Skip to content Skip to sidebar Skip to footer

Unable To Send Broadcast From Activity To Other: Android

i have problem with sending Broadcast receive from one activity to other ..its not working my code is below..pls refer to it .. sending class is: public class SendBroadcast ext

Solution 1:

you have not registered your Receiver in Manifest :registered as

<receiver android:name="receiver">
<intent-filter>
<action
android:name="com.unitedcoders.android.broadcasttest.SHOWTOAST"/>
</intent-filter>
</receiver>

Post a Comment for "Unable To Send Broadcast From Activity To Other: Android"