Intent from notification does not have extras

后端 未结 6 649
野性不改
野性不改 2020-12-07 22:38

This seem to be a common problem and I went through all the related questions I could find already: Activity isn't picking up new intent, Why extra data (integer) is not

6条回答
  •  南方客
    南方客 (楼主)
    2020-12-07 22:43

    I have used something like this

    Intent myIntent = new Intent(context, DoSomething.class);
     PendingIntent pendingIntent = PendingIntent.getActivity(
            context, 
            0, 
            myIntent, 
            Intent.FLAG_ACTIVITY_NEW_TASK);
    

    Check out the full example here

提交回复
热议问题