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. Below is the code, t
Your also have to register the receiver in onCreate(), like this:
IntentFilter filter = new IntentFilter(); filter.addAction("csinald.meg"); registerReceiver(receiver, filter);