Android - Broadcastreceiver's Onreceive Crashing From Intent?
So I'm trying to start a new activity from my onReceive function in a `BroadcastReceiver, yet I seem to be crashing. Without further adieu here is the code: public void onReceive(
Solution 1:
Try this:
Intent j = new Intent(context, myClass.class);
j.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(j);
Post a Comment for "Android - Broadcastreceiver's Onreceive Crashing From Intent?"