我有一个小应用程序,可用于设置未来事件的提醒。该应用程序使用AlarmManager来设置提醒用户的时间。当闹钟响起时,BroadcastReceiver会对此进行注册,然后启动一项服务,通过状态栏中的toast和通知来通知用户。
为了在通知和烤面包中显示正确的信息,一些额外的信息与意图一起传递。第一次注册提醒时,BroadcastReceiver收到并传递给服务的信息是正确的。但是对于每个后续提醒(即BroadcastReceiver收到的每个新意图),即使发送的信息不同,这些信息也会保持不变。
例如,如果字符串“foo”作为第一个意图的附加项放置,则广播接收器正确提取“foo”。如果在第二个意图中将“bar”作为附加项放置,则广播接收器仍然会提取“foo”。
这是注册警报并传递意图的代码(主要的ui-class):
Intent intent = new Intent(ACTION_SET_ALARM);
intent.putExtra("desc", desc);
intent.putExtra("time", time);
intent.putExtra("dbId", dbId);
intent.putExtra("millis", millis);
PendingIntent pIntent = PendingIntent.getBroadcast(quickAlert.this, 0, intent, 0);
// Schedule the alarm!
AlarmManager am = (AlarmManager) getSystemService(ALARM_SERVICE);
am.set(AlarmManager.RTC_WAKEUP, millis, pIntent);
BroadcastReceiver类中的onReceive()方法:
@Override
public void onReceive(Context context, Intent intent) {
Intent i = new Intent(context, AlertService.class);
String desc = intent.getStringExtra("desc").equals("") ? "": ": " + intent.getStringExtra("desc");
String time = intent.getStringExtra("time");
long dbId = intent.getLongExtra("dbId", -1);
long millis = intent.getLongExtra("millis", -1);
i.putExtra("desc", desc);
i.putExtra("time", time);
i.putExtra("dbId", dbId);
i.putExtra("millis", millis);
Log.d(TAG, "AlertReceiver: " + desc + ", " + time + ", " + dbId + ", " + millis);
Toast.makeText(context, "Reminder: " + desc, Toast.LENGTH_LONG).show();
context.startService(i);
}
清单中的intent-filter:
<receiver android:name=".AlertReceiver">
<intent-filter>
<action android:name="com.aspartame.quickAlert.ACTION_SET_ALARM" />
</intent-filter>
</receiver>
我已经坚持了一段时间了,所以非常感谢帮助!
答案 0 :(得分:25)
通过PendingIntent
创建getBroadcast()
时,请尝试将其添加到{{1}}。
答案 1 :(得分:9)
以上答案是正确的,但他们缺乏解释。值得注意的是PendingIntent documentation:
的这一部分PendingIntent本身只是对系统维护的令牌的引用,该令牌描述了用于检索它的原始数据。 ...如果创建应用程序稍后重新检索相同类型的PendingIntent(相同的操作,相同的Intent操作,数据,类别和组件以及相同的标志),它将接收表示相同标记的PendingIntent
请注意,“额外”数据特别是不包含在PendingIntent-identity的概念中!
答案 2 :(得分:3)
我在这个主题上发现的最佳链接:http://alvinalexander.com/source-code/android/android-how-attach-extra-intent-pendingintent-notification-solution-example
这是线索:
int uniqueInt = (int) (System.currentTimeMillis() & 0xfffffff);
PendingIntent.getService(context, uniqueInt, intent, 0)