[android-developers] Re: Problem with turning off GPS updates when application goes into the background.

2010-11-05 Thread Chirag Patel
theGPSicon stop flashing, it means that no other app is requesting the fine location. For your second doubt, I would recommend you to read this: http:// developer.android.com/guide/topics/fundamentals.html#lcycles On Nov 3, 4:25 pm, Chirag Patel chi...@gmail.com wrote: Thanks

[android-developers] Re: Problem with turning off GPS updates when application goes into the background.

2010-11-04 Thread Chirag Patel
app with only one activity that just registers and unregisteres a location listener. See if that works. On Nov 3, 2:25 pm, Chirag Patel chi...@gmail.com wrote: Thanks for the response but it didn't help. Calling locationManager.removeUpdates(this);  causes the GPS icon to stop flashing

[android-developers] Re: Problem with turning off GPS updates when application goes into the background.

2010-11-03 Thread Chirag Patel
- variable. Request location updates in onResume(), using the instance-variable. Remove location updates in onPause(), using the instance-variable. On Nov 2, 2:10 pm, Chirag Patel chi...@gmail.com wrote: Hi I'm having a problem when trying to stop location updates when the app goes

[android-developers] Problem with turning off GPS updates when application goes into the background.

2010-11-02 Thread Chirag Patel
Hi I'm having a problem when trying to stop location updates when the app goes into the background. In my onCreate() method I start request updates like this: LocationManager locationManager = (LocationManager)context.getSystemService(Context.LOCATION_SERVICE);

[android-developers] Samsung Galaxy S Contacts Sync problem to CYNCZ Server

2010-09-24 Thread Chirag Patel
sync is working !! I can not add contacts from android phone to CYNCZ server. Waiting for Your Reply ASAP, Thanks, Chirag Patel. -- 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

[android-developers] EditText Bug?

2009-08-19 Thread Chirag Patel
Hi has anyone else experienced this behaviour: I have a simple EditText field in one of my Activities. If I set the field to disabled, it greys out and I cannot enter text with the hardware keyboard, however when I touch the field the virtual keyboard appears and that still lets me enter text.

[android-developers] Re: EditText Bug?

2009-08-19 Thread Chirag Patel
Yep that was one of the first things I tried. Doesn't seem to work, I see the same behaviour as before On Aug 19, 1:01 pm, Sujay Krishna Suresh sujay.coold...@gmail.com wrote: try using setClickabe(false); On Wed, Aug 19, 2009 at 5:29 PM, Chirag Patel chi...@gmail.com wrote: Hi has anyone

[android-developers] Re: EditText Bug?

2009-08-19 Thread Chirag Patel
wrote: Yep that was one of the first things I tried. Doesn't seem to work, I see the same behaviour as before On Aug 19, 1:01 pm, Sujay Krishna Suresh sujay.coold...@gmail.com wrote: try using setClickabe(false); On Wed, Aug 19, 2009 at 5:29 PM, Chirag Patel chi...@gmail.com wrote

[android-developers] Switching Content Providers for the same Content URI

2009-08-12 Thread Chirag Patel
Hi, this may seem like a stupid question but I need to be sure. I was wondering if it was possible to programmatically change the Content Provider used when making a query given a Content URI. The reason being I need to know if it's possible to force the Calendar/Contacts applications to read

[android-developers] Integrating Calendar/Contacts apps into your own application

2009-08-10 Thread Chirag Patel
Hi, I'm working on an application that allows a user to manage different email accounts all from one app. The application has it's own list of contacts / PIM (Personal Information Management) data obtained from each email service. To display the list of contacts/PIM data I was wondering if it