Intent Intents.Insert.ACTION只能在第一次使用?

时间:2014-05-19 07:30:46

标签: java android android-intent android-contacts android-notifications

我的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”传递给它)。但是,后续调用将继续显示第一次显示的相同对话框,其中包含相同的值。因此,即使我在输入中使用不同的数字再次调用此片段代码(“Intents.Insert.PHONE”额外值的“text”值),我将始终获得“01234-1234567”。

我尝试取消联系人屏幕,手动创建新联系人,完全停止联系人应用程序...无论如何,下次点击通知按钮时,我将获得具有我最初传递的值的屏幕第一次尝试。

您有任何解释或在代码中看到任何错误吗?

2 个答案:

答案 0 :(得分:1)

我解决了。基本上,系统会缓存意图,除非它们的区别不仅仅是额外的参数。在我的代码中,我只更改了电话号码,因此它始终使用相同(第一个)缓存的意图。解决方案是使用标志来取消当前缓存的intent并创建一个新的

PendingIntent pendingSaveIntent = PendingIntent.getActivity(
        context, 0, saveIntent, PendingIntent.FLAG_CANCEL_CURRENT);

答案 1 :(得分:0)

系统兑现了意图,因此在(PendingIntent.FLAG_UPDATE_CURRENT)中,而不是在您的PendingIntent中输入标志,请尝试:

PendingIntent.getActivity(context,0,saveIntent,PendingIntent.FLAG_UPDATE_CURRENT);