I am trying to recive BroadcastReceiver when i click button on main.xml
**mainfest.xml**
get rid of the pending intent and do it this way:
on the onclick for your button's click event call:
public void onClick(View v) {
// TODO Auto-generated method stub
broadcastMsg("borad.cast");
}
});
// and here is the function definition:
public void broadcastMsg(String intentName) {
final Intent intent = new Intent(intentName);
sendBroadcast(intent);
}