Sending extras to BroadcastReceiver

后端 未结 3 1599
独厮守ぢ
独厮守ぢ 2021-01-15 01:07

I have an Activity that runs the following code (time and interval are defined):

Intent buzzIntent = new Intent(getBaseContext(), BuzzReceiver.class);
Pendin         


        
3条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-15 01:22

    Set flag FILL_IN_DATA while creating pending intent as below:

    PendingIntent pendingIntent = PendingIntent.getBroadcast(getBaseContext(), 0, buzzIntent, Intent.FILL_IN_DATA);
    

    You should receive extras in broadcast receiver after this change.

提交回复
热议问题