我的Android服务创建一个带有自定义按钮的通知。自定义按钮的操作应该打开"创建联系人"系统屏幕,并预先填写电话号码。这是代码:
// create the base notification
Intent notificationIntent = new Intent(context, MyService.class);
PendingIntent pendingIntent = PendingIntent.getService(
context, 0, notificationIntent, PendingIntent.FLAG_UPDATE_CURRENT);
NotificationCompat.Builder builder = new NotificationCompat.Builder(context)
.setSmallIcon(R.drawable.ic_launcher)
.setContentTitle(title)
.setContentText(text)
.setAutoCancel(false)
.setOngoing(true)
.setContentIntent(pendingIntent);
// add the action to save to contacts
Intent saveIntent = new Intent(ContactsContract.Intents.Insert.ACTION);
saveIntent.setType(ContactsContract.RawContacts.CONTENT_TYPE);
saveIntent.putExtra(ContactsContract.Intents.Insert.PHONE, text);
saveIntent.putExtra(ContactsContract.Intents.Insert.PHONE_TYPE,
ContactsContract.CommonDataKinds.Phone.TYPE_WORK);
PendingIntent pendingSaveIntent = PendingIntent.getActivity(context, 0, saveIntent, 0);
builder.addAction(0, "Save to Contacts", pendingSaveIntent);
// show the notification
context.getSystemService(Context.NOTIFICATION_SERVICE).notify(0, builder.build());
代码第一次运行良好(假设我传递"01234-1234567"给它)。但是,随后的调用继续显示与第一次相同的对话框,其中包含相同的值。因此,即使我在输入中使用不同的数字("intent . insert"的"text"的值)再次调用这段代码。我总是会得到"01234-1234567"。
我试过取消联系人屏幕,手动创建一个新的联系人,完全停止联系人应用程序…无论如何,下次我点击通知按钮时,我将看到带有我最初在第一次尝试时传递的值的屏幕。
你有任何解释或看到任何错误的代码?
我解决了。基本上,系统缓存意图,除非它们的不同之处不仅仅是额外的参数。在我的代码中,我只更改了电话号码,所以它总是使用相同的(第一次)缓存意图。解决方案是使用一个标志来取消当前缓存的意图,并创建一个新的
PendingIntent pendingSaveIntent = PendingIntent.getActivity(
context, 0, saveIntent, PendingIntent.FLAG_CANCEL_CURRENT);
系统兑现意图,所以在你的PendingIntent中不是输入0作为标志,而是使用(PendingIntent. flag_update_current),试试这个:
PendingIntent。getActivity(context, 0, saveIntent, PendingIntent.FLAG_UPDATE_CURRENT);