Re: [android-developers] outOfMemoryError

2011-03-29 Thread sukumar bhashyam
Try recycling the unused bitmap. Not sure why do you need to store the all bitmaps in ArrayList. There could be a memory leak. Analyse the memory usage of your application. Check here for more info ( http://android-developers.blogspot.com/2011/03/memory-analysis-for-android.html) . On Tue, Mar

[android-developers] Immediate need for SQL Server Developer @GA

2011-03-11 Thread Sukumar Virtue
to research and complete source to target mapping documentation from multiple source systems to target Data Warehouse star schemas*** *Healthcare background a plus* Thanks Regards, *Sukumar* *Dir: **678-735-4375* *Ph: 678-578-4555 Ext: 4375* Fax: 678-325-6413 Email: svall

Re: [android-developers] Re: Mms-Sms database Thread Id Issue

2011-02-17 Thread sukumar bhashyam
/com/android/providers/telephony/MmsSmsProvider.java Thanks, Madhavi On Feb 16, 6:54 pm, sukumar bhashyam bhashyam.suku...@gmail.com wrote: hi , Uri content://mms-sms doesn't point to any table in mmssms db, Its just a base uri. To check for address, I guess, you need to run below

Re: [android-developers] Mms-Sms database Thread Id Issue

2011-02-16 Thread sukumar bhashyam
hi , Uri content://mms-sms doesn't point to any table in mmssms db, Its just a base uri. To check for address, I guess, you need to run below steps... -- First query canonical_addresses table and get the _id, If query has 0 count then address is not found. -- If not, then look for _id in

Re: [android-developers] Calling WebView.addJavascriptInterface after onPageFinished

2011-01-20 Thread sukumar bhashyam
Try this... mWebView.loadUrl(javascript:window.MyLateJavaObject.callableFunction();); On Thu, Jan 20, 2011 at 11:13 PM, jamesh jameshug...@gmail.com wrote: Hi, I'm trying to add Java objects to a WebView, such that they are available to Javascript. I can prove that if I do:

Re: [android-developers] google.com search button select issue on WebView

2011-01-07 Thread sukumar bhashyam
? http://developer.android.com/reference/android/webkit/WebSettings.html#setJavaScriptEnabled(boolean)http://developer.android.com/reference/android/webkit/WebSettings.html#setJavaScriptEnabled%28boolean%29 -- Kostya 07.01.2011 16:19, sukumar bhashyam пишет: hi, My app, which uses webview

[android-developers] Query regarding Intent.get Extras.

2010-08-11 Thread sukumar bhashyam
or reference to extras in Intent?. Regards, Sukumar. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers

[android-developers] Re: Issue with legacy phones URI.

2010-06-15 Thread sukumar bhashyam
Hello Can anyone please comment Regards, Sukumar. On Mon, Jun 14, 2010 at 7:07 PM, sukumar bhashyam bhashyam.suku...@gmail.com wrote: hi, My app needs contacts id, display name and phone number in a single query. I see legacy uri android.provider.Contacts.Phones.CONTENT_URI

[android-developers] Issue with legacy phones URI.

2010-06-14 Thread sukumar bhashyam
hi, My app needs contacts id, display name and phone number in a single query. I see legacy uri android.provider.Contacts.Phones.CONTENT_URI suits me the best. For some reasons query on this uri return me 0. I looked into the LegacyApiSupport.java, legacy PHONES table is mapped to a view

Re: [android-developers] Re: Prepare VCard in android

2010-05-19 Thread sukumar bhashyam
APIs not exposed in Android Framework. But, code for parsing/composing v-card is available in android git. Check below link, you can use this in your code. http://code.google.com/p/android-vcard/source/browse/branches/android2-merge/android-vcard/src2/android/pim/vcard/VCardComposer.java On Tue,

[android-developers] Re: AbstractAccountAuthenticator.getAccountRemovalAllowed query

2010-03-16 Thread sukumar bhashyam
Can anyone pls respond? On Fri, Mar 12, 2010 at 3:20 PM, sukumar bhashyam bhashyam.suku...@gmail.com wrote: hi, I'm trying to create a sync account which should not be deleted by user ( On selecting RemoveAccounts from Accounts settngs). For that, I overriden getAccountRemovalAllowed

[android-developers] AbstractAccountAuthenticator.getAccountRemovalAllowed query

2010-03-12 Thread sukumar bhashyam
activity, Its showing a Dialog with text This account is required by some applications, You can only Please let me know, If I missed something?. Thanks. Regards, Sukumar. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Cannot sendBroadcast Intent to receiver which has permission.

2010-03-11 Thread sukumar bhashyam
com.suku.HelloWorld (pid=1649, uid=10081) requires com.suku.test due to receiver com.suku.HelloWorld/com.suku.HelloWorld.TestReceiverPermission Any Idea why I'm getting this error?. Any help would be appreciated. Thanks. Regards, Sukumar. -- You received this message because you are subscribed

Re: [android-developers] Cannot sendBroadcast Intent to receiver which has permission.

2010-03-11 Thread sukumar bhashyam
Regards, Sukumar. On Fri, Mar 12, 2010 at 10:51 AM, Dianne Hackborn hack...@android.comwrote: Your app apparently does not have that permission. Are there any messages printed in the log when installing it saying why it was not granted? On Thu, Mar 11, 2010 at 9:11 PM, sukumar bhashyam

Re: [android-developers] Cannot sendBroadcast Intent to receiver which has permission.

2010-03-11 Thread sukumar bhashyam
I got the problem..Need to create permission in the manifest file. permission android:name=com.suku.test /permission On Fri, Mar 12, 2010 at 11:41 AM, sukumar bhashyam bhashyam.suku...@gmail.com wrote: hi Dianne, I see following message while installing my app. Any reason

Re: [android-developers] My Widget is Locking up Android OS

2010-03-03 Thread sukumar bhashyam
Don't pass AppWidgetManager instance to MyTime class. Instead use AppWidgetManager.getInstance() to get an instance of AppWidgetManager. On Wed, Mar 3, 2010 at 10:04 AM, themindiswasted abarban...@gmail.comwrote: Can someone look at this code and see why it is locking up the Android OS. I am

Re: [android-developers] Re: 2.0 AccountManager - Implementing a new account type with Google, Facebook and Exchange

2009-11-19 Thread sukumar bhashyam
AddAccountExplicitly() would need Authenticator of same type. I created an Authenticator and called AddAccountExplicitly() for the same type which created an account ( Could verify it from AccountManager.getAccounts()) One strange thing I observer is none of the implementation class functions

Re: [android-developers] Re: Working with the new ContactContracts API

2009-11-09 Thread sukumar bhashyam
or through ContentResolver.requestSync(). What is the api should other apps call to bind to my sync application?. Could you please let us know some more details of SyncManager and Sync Adapter relation. What should I do to add my AbstractAdapter to SyncManager. Thanks. Regards, Sukumar. On Sat, Nov 7

Re: [android-developers] Re: Working with the new ContactContracts API

2009-11-09 Thread sukumar bhashyam
. What should I do to add my AbstractAdapter to SyncManager. Thanks. Regards, Sukumar. On Tue, Nov 10, 2009 at 11:10 AM, Dmitri Plotnikov dplotni...@google.comwrote: The way you are setting ringtones looks right. Setting them on the aggregate contact is the right way to go. Can you see any

[android-developers] Re: Android 2.0 Force close in contacts app

2009-10-28 Thread sukumar bhashyam
hi Xav, Andorid 2.0 SDK release page talks more about Contacts Sync Adaptor, which is not supported in Official Android 2.0 SDK. Could you please let me know when it will be supported. Will there be another 2.0 SDK release with Sync Adaptor changes?. Regards, Sukumar. On Wed, Oct 28, 2009

[android-developers] Deep sleep behaviour

2009-09-08 Thread sukumar bhashyam
?. If CPU is turned off on Deep Sleep, when Device comes out of Deep Sleep, will my service continues(resumes) its operations which it was doing earlier?. Can anyone please help me out in understanding this. Thanks, Sukumar. --~--~-~--~~~---~--~~ You received

[android-developers] CPU usage api's query

2009-07-15 Thread sukumar bhashyam
the CPU load and quit the service if CPU load exceed a threshold(80 %) after storing states. Please let me know of any better way of handling the objectives of my service stated above. Thanks. Regards, Sukumar. --~--~-~--~~~---~--~~ You received this message because

[android-developers] quoted printable decoder api on Android?

2009-06-23 Thread sukumar
hi, Was there any apis available on android for quoted printable decoding ?. Thanks. Regards, Sukumar. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Not able to launch an activity of other app from Tab activity.

2009-06-03 Thread sukumar bhashyam
Hi, I am getting the following exception when I call an activity1 ( resides in 1.apk) using the following intent from TabActivity (activity 2 resides in 2.apk) Intent tab1intent = new Intent(); tab1intent.setAction( android.intent.action.VIEW); tab1intent.addCategory(

[android-developers] How to share non-sqlite( shared Preference) data over Content Provider.

2009-05-28 Thread sukumar bhashyam
pointers or sample code to share data other than sqlite db using content provider. Thanks, Sukumar. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android

[android-developers] How to share non-sqlite( shared Preference) data over Content Provider.

2009-05-28 Thread sukumar
to do it?. Please let me know some pointers or sample code to share data other than sqlite db using content provider. Thanks, Sukumar. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Re: InstrumentationTestRunner on G1

2009-03-17 Thread sukumar bhashyam
hi Fred, CheckJNI has nothing to do with testRunner. Din't remember the exact cause why it was not running on phone. But, it started working after sometime( might be problem with my code ). Sukumar. On Tue, Dec 30, 2008 at 3:12 PM, sukumar bhashyam.suku...@gmail.com wrote: hi, I'm facing

[android-developers] Excessive JNI global references (2001)

2009-02-26 Thread sukumar
' 02-26 19:14:11.792: INFO/DEBUG(20): pid: 1418, tid: 1469 android.process.acore Thanks, Sukumar. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android

[android-developers] suspend/resume a thread from another thread in same app

2009-02-20 Thread sukumar
Hi Android experts, I need to suspend/resume a thread from another thread in the same process. I tried to look into thread apis,but I couldn't figured out a way to achieve this.Can anyone pls point me some references to look or give a tip to do this. Thanks a lot in advance. Regards, Sukumar

[android-developers] Problems converting Base64 byte arrray to String.

2009-02-16 Thread sukumar
); Regards, Sukumar. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android

[android-developers] Re: How to get the IMEI number of a android device programmatically?

2009-02-10 Thread sukumar bhashyam
Use TelephonyManager's getDeviceId(). On Tue, Feb 10, 2009 at 3:48 PM, manoj manojkumar.m...@gmail.com wrote: Hi frnds, I want get the IMEI number of a android device programmatically. But I dont know how to get it by writing a program. Can any one please help me to get the IMEI?

[android-developers] Unique ID for contacts?

2009-01-22 Thread sukumar
Item.Please let me know for any better suggestions of keeping track of modified contacts. Thanks. -Sukumar. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] apis to encode xml to wbxml 1.2 ?

2009-01-09 Thread sukumar
hello, Does android supports any apis/scripts to encode/decode xml to wbxml ?. If so, please help me in finding it out. Thanks. Sukumar. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group

[android-developers] InstrumentationTestRunner on G1

2008-12-30 Thread sukumar
runner ?. Thanks in advance. Sukumar. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from

[android-developers] Re: Adding image to Background:

2008-12-22 Thread sukumar
Setting background Image to where? Application background or ImageView background? Use ImageView.setBackgroundResource() api if u need to set it for ImageView.If it is for an entire actiivty, use view's canvas to set it. On Dec 22, 2:46 pm, diya blore diya.bl...@gmail.com wrote: Hi All, Can

[android-developers] Application/Activity launched notification?

2008-12-22 Thread sukumar
hi, Is there a way in Android, to listen for any event/notification when an application/actiivty is launched?. Thanks. Sukumar. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Re: Service launching multiple times

2008-12-18 Thread sukumar
task and starts again from onStart function or Will service run the two task in separate two threads? -Sukumar. On Dec 18, 12:08 pm, JP joachim.pfeif...@gmail.com wrote: Here's my 2 cents on Services: I personally do not execute anything inside a service. A Service runs in the main Thread

[android-developers] Service launching multiple times

2008-12-17 Thread sukumar
different thread? Thanks, Sukumar. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send

[android-developers] Condition to check phonebook is empty or not?

2008-12-12 Thread sukumar
Regards, Sukumar. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android

[android-developers] Adding frames into an Image

2008-12-02 Thread sukumar
this. Thanks a lot in advance. -Sukumar. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send