[android-developers] Apk published in alpha channel not found in playstore

2016-05-02 Thread senthil sen
but I get the app not found in playstore. May I know why the app published in alpha channel is not reflecting in the playstore link. Below is the link where the sample app is published. https://play.google.com/apps/testing/com.hexaware.inapp.trivialdrivesample. Thanks, Senthil M -- You received

[android-developers] Re: image issue while view it as base64 in android mobile2.3

2013-03-18 Thread senthil kumar
why it happening.. On Thursday, March 14, 2013 9:47:24 AM UTC+5:30, senthil kumar wrote: Hi, Using phone and javascript in our application. we want to see the image as base64 from the sqlite db. In some mobile all the image(i.e 4 or 5) are viewed but in some mobile some of the image(even 1

[android-developers] image issue while view it as base64 in android mobile2.3

2013-03-13 Thread senthil kumar
Hi, Using phone and javascript in our application. we want to see the image as base64 from the sqlite db. In some mobile all the image(i.e 4 or 5) are viewed but in some mobile some of the image(even 1 is not displayed) are not viewed we do not know why it happening... is it due to memory?

[android-developers] using phonegap plugin in android want to reduce the screen size of camera

2012-08-08 Thread senthil kumar
I am using phonegap plugin in android want to reduce the screen size of camera. i have attached the capture.xml file with this mail. please find the attachment... -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Google map is not displaying well in the Samsung galaxy s551 and LG Optimus ME.

2012-03-09 Thread senthil kumar
Google map is not displaying well in the Samsung galaxy s551 and LG Optimus ME but the same application is run in LG Optimus PRO well Able to find the root between the two latitudes and longitudes values.The above said 2 phones the google map is not displaying well.It is half loaded google

[android-developers] LG Optimus PRO phone runs out of memory.

2012-03-09 Thread senthil kumar
When i ran an application in the LG Optimus PRO phone. It shows some of the service running on the back of it. When i stop some of the service and RAM get the free space and then only able to run the application. Will it possible to stop the service which are running at background.. Note: Using

Re: [android-developers] Re: Starting Android

2012-02-08 Thread Senthil kumar
Check with vogella,its really a great site to learn android development..Am also learning from that site On Wed, Feb 8, 2012 at 2:25 PM, T.M.S.VIJAYKUMARR iamvijayaku...@gmail.comwrote: check this http://iamvijayakumar.blogspot.com/ -- You received this message because you are subscribed to

Re: [android-developers] Convert AMR to MP3

2011-11-22 Thread senthil raja
On Sat, Nov 19, 2011 at 8:57 PM, Giuseppe Porcelli- FINM porcelli.giuse...@gmail.com wrote: Dear All, someone can help me to convert AMR file to MP3 on the device? No experience with NDK only JAVA. ** ** Thank’s Giuseppe ** ** -- You received this message because

[android-developers] using android in phonegap.js and jquery mobile

2011-09-30 Thread senthil kumar
Hi, I am developing an application in android make use of phonegap.js and jquery mobile. In the application through HTTP Connection get some data from the server. Just want to know whether to use Phonegap.js or not.. Please help me... -- You received this message because you are subscribed to

[android-developers] application is slow and xml file updated values is not getting correctly..

2011-07-19 Thread senthil kumar
Hi, I am using jQuery mobile,javascript,HMTL,CSS and Phonegap. When i run the application in the android mobile (sony ericsson xperia) the application is too slow to load.I connected the mobile through the WIFI. And i am facing another problem in the Mobile device. some xml files is placed on

[android-developers] Re: SQLite, Cursors, CursorIndexOutOfBoundsException

2011-05-26 Thread Senthil ACS
Hi, After you get a cursor object from a query, check the count before doing moveToFirst(). if(cursor.getCount() 0) { cursor.moveToFirst(); ... processing ... } On May 26, 3:12 am, adek adrian.ka...@gmail.com wrote: Hello, As a beginner in android java world I need your help. I've

[android-developers] Re: ListView Issue

2011-05-26 Thread Senthil ACS
Agree with Treking.. Hint: Use layoutinflater On May 26, 2:28 am, TreKing treking...@gmail.com wrote: On Tue, May 24, 2011 at 1:18 PM, bhima santosh santosh.bh...@gmail.comwrote: I want to have a listview with each row having a button,textview and image. Can anyone tell how to go abt it

[android-developers] Re: security exception while reading call logs?

2011-05-26 Thread Senthil ACS
We delete call logs for one of our use cases and it works. We use these two permissions. And it must work for query as well. uses-permission android:name=android.permission.READ_CONTACTS / uses-permission android:name=android.permission.WRITE_CONTACTS / Senthil On May 26, 9:43 am

[android-developers] Re: Radio button in list adapter

2011-05-26 Thread Senthil ACS
Have a layout that contains a radio button. Inflate the layout for the list in your getView() or bindView method. On May 26, 7:13 am, TreKing treking...@gmail.com wrote: On Wed, May 25, 2011 at 8:42 PM, Jay SB jsb.andr...@gmail.com wrote: Could  any throw some light for implementing the Radio

[android-developers] Re: Convert tamil unicode character to tamil text

2011-05-02 Thread Senthil ACS
Madam, U need to have UTF16 font (Latha or Aksharamala) installed on the device. The font typically tells how to draw on the screen. And every character is associated with a unicode character. Hence, try to find if u can place the font in the phone. If u have your android phone rooted, u can play

[android-developers] Re: OutOfMemory exception in OnCreate

2010-10-03 Thread Senthil ACS
onCreate gets called when u turn change the orientation if you are not handling orientation changes in the manifest. I have seen so many ppl complaining of this. The perfect solution is given in this link http://android-developers.blogspot.com/2009/01/avoiding-memory-leaks.html If its failing to

[android-developers] Re: Best practice for sharing a SQLiteCursor from one Activity to another?

2010-05-08 Thread Senthil ACS
I remember there is an interface named CrossProcessCursor that implements Cursor. Specify this interface in your aidl interface method. On May 8, 7:21 pm, westmeadboy westmead...@yahoo.co.uk wrote: In one activity I build a cursor which is used to populate a ListView. I want a secondary

[android-developers] Re: SQLite concurrent access best practices

2010-05-08 Thread Senthil ACS
For insert() and update(), have it under synchronized blocks. On May 8, 5:40 pm, Thierry Legras tleg...@gmail.com wrote: Hi, I have an application with several tables, each being updated by AsyncTask fired by different Activities and used by UI with SimpleCursorAdapter. Though i am not

[android-developers] Re: Button in ListView Event

2010-05-08 Thread Senthil ACS
Dude.. In intent.setClass(), pass the first parameter as the activity context that, in this case, can be obtained by declaring a final variable outside the onClick() method so that it can be accessed inside. Second paramter must be the target classname dot class. (TargetClass.class) Modifying

[android-developers] Re: mapview on the top part of the screen ?

2010-05-08 Thread Senthil ACS
503 by 480 is huge. Try setting width as fill_parent and height as say 100dip. On May 7, 5:14 am, jgan jim@gmail.com wrote: Hi Does anyone know how to put mapview on the top part of the screen? The map always occupies the whole screen and squeezes out the views below. The explicitly

[android-developers] Type to Search with Multiple Content Providers

2010-02-27 Thread Senthil ACS
ContentProviders. Here, it does not query for the second content provider. Only Media gets searched. Is there any way by which we can specify two CotentProviders and have both of them searched for Type to Search? Senthil -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Retrieving Shoutcast Meta-Data from MediaPlayer not possible. Any alternative ?

2009-12-10 Thread senthil sen
Can you please share me the source code of how u are getting the meta data of shoutcast stream. I am also trying to play a radio station. But i am getting a small gap in between while playing. thanks, Sondy On Nov 26, 8:23 pm, Ole o...@theco.de wrote: I've solved the issue. The solution is

[android-developers] UnKnownHostException

2009-07-13 Thread senthil sen
Hi friends, I am also facing the same issue.. When i run my application for sometime, suddenly the network is getting disconnected and i am getting the unknownhostexception in my application. In that case if i check the browser, the same exception occurs.I don't know why internet is getting

[android-developers] Re: UnknownHostException on 1.5 emulator

2009-07-13 Thread senthil sen
Hi friends, I am also facing the same issue.. When i run my application for sometime, suddenly the network is getting disconnected and i am getting the unknownhostexception in my application. In that case if i check the browser, the same exception occurs.I don't know why internet is getting

[android-developers] Re: UnknownHostException on 1.5 emulator

2009-07-13 Thread senthil sen
Hi friends, I am also facing the same issue.. When i run my application for sometime, suddenly the network is getting disconnected and i am getting the unknownhostexception in my application. In that case if i check the browser, the same exception occurs.I don't know why internet is getting

[android-developers] Re: UnknownHostException on 1.5 emulator

2009-07-13 Thread senthil sen
Hi friends, I am also facing the same issue.. When i run my application for sometime, suddenly the network is getting disconnected and i am getting the unknownhostexception in my application. In that case if i check the browser, the same exception occurs.I don't know why internet is getting

[android-developers] How to add SMS to inbox in android programmatically?

2009-03-13 Thread senthil
HI, Iam sending the sms by using the below code, SmsManager smsManager = SmsManager.getDefault(); smsManager.sendTextMessage(destAddr, null, mMessageText, il, null); But, the same SMS message needs to be reflected in the Native sms inbox, Can anyone help me out in achieving this Thanks in

[android-developers] Re: How can we restart an Activity properly?

2009-01-07 Thread Senthil kumar A
Hi Toothy Bunny, Please try this code in your restart. i think works fine Intent intent = this.getIntent(); startActivity(intent); finish(); --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[android-developers] Re: Send SMS from Emulator

2008-06-23 Thread senthil arjunan
Hi Ramesh, Pls follow this link...hope to help u.. http://www.anddev.org/how_to_send_sms-t552.html \ Regardsn Senthil Arjunan On Mon, Jun 23, 2008 at 12:17 PM, Ramesh [EMAIL PROTECTED] wrote: Hi, In My Application, I have send sms from emulator with out network. at the time

[android-developers] Re: Working with files

2008-05-23 Thread senthil arjunan
Hi, Use DDMS perspective than use File Explorer.. On Fri, May 23, 2008 at 2:46 PM, imen [EMAIL PROTECTED] wrote: Hi, In my application, i want to use files that are in my computer. I want to open a file on the Emulator. Please, how can i do it ? Thank you.

[android-developers] Re: using mysql

2008-05-10 Thread senthil arjunan
Hi Neo, Try this.. JAVA: String exsistingFileName = samplefile.txt; String lineEnd = \r\n; String twoHyphens = --; String boundary = *; String urlString=path/db_conn.php; HttpURLConnection conn; DataOutputStream dos; try{