gpt4 book ai didi

android - 从 Broadcast Receiver 接收 Pending Intent 的 ID

转载 作者:行者123 更新时间:2023-11-30 02:00:47 28 4
gpt4 key购买 nike

我需要从 Broadcast Receiver 类访问 Pending Intent 的 ID。这是我使用 PendingIntent 从中设置警报的主要 Activity 的代码。

private void setAlarm(Calendar targetCal)
{


Intent alarmintent = new Intent(AddAlarm.this, AlarmReceiver.class);
PendingIntent sender = PendingIntent.getBroadcast(AddAlarm.this, pen, alarmintent, PendingIntent.FLAG_ONE_SHOT); //where pen is the ID
AlarmManager alarmManager = (AlarmManager)getSystemService(ALARM_SERVICE);
alarmManager.setExact(AlarmManager.RTC_WAKEUP, targetCal.getTimeInMillis(), sender);


}

这是我的广播接收器的代码:

    public class AlarmReceiver extends WakefulBroadcastReceiver {

@Override
public void onReceive(final Context context, Intent intent) {
int vibrator = intent.getIntExtra("vibrator", 1);

//PendingIntent sender = PendingIntent.getBroadcast(context, 0, intent, 0);



//intent to call the activity which shows on ringing
Intent myIntent = new Intent(context, Time_Date.class);
myIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(myIntent);

//display that alarm is ringing
Toast.makeText(context, "Alarm Ringing...!!!", Toast.LENGTH_LONG).show();

ComponentName comp = new ComponentName(context.getPackageName(),
AlarmService.class.getName());
startWakefulService(context, (intent.setComponent(comp)));
setResultCode(Activity.RESULT_OK);




}


}

我可以使用 Intent.putExtra() 接收相同的或任何其他简单的方法来获取广播接收器的唯一 ID 吗?任何帮助将不胜感激。

最佳答案

我认为 PendingIntent.getBroadcast() 的第二个参数不会被最终接收到 Intent 的组件使用(至少我没有找到访问它的方法)。如果您想传递一些特定于您的应用的数据,只需使用一个额外的。

关于android - 从 Broadcast Receiver 接收 Pending Intent 的 ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31520040/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com