Android BroadcastReceiver failed to receive sendOrderedBroadcast

718 Views Asked by At

I have an activity MyActivity that starts a Foreground service to play music and once music is completed the service intimates by sending sendOrderedBroadcast

  public class MyActivity  extends Activity {  
     @Override
     protected void onCreate(Bundle savedInstanceState) {
      .....
      Intent intent = new Intent(MyActivity  .this, MyMusicPlayerService.class);
      startService(intent);
     }

    @Override
    protected void onResume() {
      super.onResume();
      IntentFilter from_sendorderedNotification = new IntentFilter(ACTION_SESSION_COMPLETE);
      registerReceiver(notificationsessionComplted, from_sendorderedNotification);

    }


    BroadcastReceiver notificationsessionComplted = new BroadcastReceiver() {
    @Override
    public void onReceive(Context context, Intent intent) {
        Log.v("xa", "onRecive of activity Send Boarcast by order ****************");

    }
  };
}

MyMusicPlayerService.java

   public class MyMusicPlayerServiceextends Service {
     public static final String ACTION_SESSION_COMPLETE = "my.action.COMPLETE";

     @Override
     public int onStartCommand(Intent intent, int flags, int startId) {
       ......
       ....Start mediaplayer and set setOnCompletionListener....
       return START_STICKY;
      }

    public void onCompletion(MediaPlayer _mediaPlayer){
      stopForeground(true);
      stopSelf();

      Intent i = new Intent();
      i.setAction(ACTION_SESSION_COMPLETE);
      MyMusicPlayerServiceextends .this.sendOrderedBroadcast(i, null);
   }
 }

SendNotification .java

 public class SendNotification extends BroadcastReceiver{

   @Override
   public void onReceive(Context arg0, Intent arg1) {
      Notification notification = ....
      notification.flags = Notification.DEFAULT_LIGHTS | Notification.FLAG_AUTO_CANCEL;
      Intent intent = new Intent(arg0, MyActivity  .class);
      intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK);
      intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
      intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
      intent.addFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
      PendingIntent contentIntent = PendingIntent.getActivity(arg0, 0, intent, 0);
      notification.setLatestEventInfo(context, contentTitle, contentText, contentIntent);
      final int _ID = 10;
      mNotificationManager.notify(_ID, notification);

}

Mainfest file

 <service android:name="com.example.sendbroadcast.MyMusicPlayerService" />

     <activity
        android:name="com.example.sendbroadcast.MyActivity"
       android:launchMode="singleTop"
        android:noHistory="true">
      <intent-filter android:priority="1" >
            <action android:name="my.action.COMPLETE" />
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>

      <receiver android:name="com.example.sendbroadcast.SendNotification" >
        <intent-filter android:priority="2" >
            <action android:name="my.action.COMPLETE" />
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </receiver>

I have unregister the receiver in onPause of MyActivity, when the Activity is in onStop state the receiver SendNotification will receive the Broadcast and intimate the user by a notification and a click on it shall bring back to MyActivity.Suppose Myactivity has destroyed and its removed from stack there is no broadcast send or received.May i know why receiver failed to receive in this scenario.

0

There are 0 best solutions below