[android-developers] Re: What happens with the registered broadcast receivers after the application is killed?

2010-03-26 Thread Tughi
I had no idea I could do that with the components declared in the manifest. Thanks a lot! On Mar 25, 5:23 pm, Mark Murphy mmur...@commonsware.com wrote: Tughi wrote: Hi guys, I want to optimize the CPU usage in my application. Currently my application is configured to always receive

[android-developers] What happens with the registered broadcast receivers after the application is killed?

2010-03-25 Thread Tughi
Hi guys, I want to optimize the CPU usage in my application. Currently my application is configured to always receive the CONNECTIVITY_CHANGED action to force an update if the previous update failed because there was no connectivity. What I don't like about this is that the broadcast receiver

[android-developers] how to remove certain SMS notifications

2008-11-24 Thread Tughi
Hi, I have a BroadcastReceiver that fetches incoming SMSs. I need to know how can I remove/cancel the notification for a particular SMS. I found no way to list the contents of the notifications bar, and also only marking a SMS as read doesn't do the trick. Is it possible to remove a particular

[android-developers] contacts.extensions

2008-10-29 Thread Tughi
Hi guys, I'm trying to extend the contacts by adding additional fields to contacts.people using contacts.extensions. My only problem is that have no idea how to query the contacts.people using a join with contacts.extensions. I'm not trying to modify/extend the contacts provider. One very very