Why I have this error : ERROR/AndroidRuntime(854): Uncaught handler: thread main exiting due to uncaught exception
@Override public void onReceive(Context context, Intent intent) { Intent myIntent = new Intent(context, YourActivity.class);
I\'m just trying this little sample project, all it does: Activity one has a Button that sends a Broadcast. Activity two displays a toast when received.
can i register a BroadcastReceiver from my activity but keep it active while the app is not running? (o开发者_运维技巧bviously if the user sets that wants this on my app settings)
I have two receivers that are li开发者_StackOverflow中文版stening for android.intent.action.BOOT_COMPLETED and android.intent.action.PACKAGE_REPLACED. I was wondering how much battery life they are ca
I am trying to catch the package replaced broadcast for my app and only my app, but for some reason in my reciever I am the broadcast for every app that is updated.I thought you only needed to set the
i\'m trying this开发者_如何学Python code found on internet...it should show a toast for OutComing call event using a BroadcastReceiver but on my htc tattoo with Android 1.6 it doesn\'t works (it don\'
I would like to create a application that would respond to receiving SMS messages and display a dialog. How can I register the receiver in the manifest without defining within an activity?
I want BroadcastReceiver to rec开发者_运维知识库eive incoming call, so I used <receiver>--android.intent.action.ANSWER --</receiver>
I am new to Android and trying to implement the sample AlarmController application. Everything is fine but its Alarm Service is not working. I was wondering that do I need to register these services i