小部件 - 意图在接收时保持不变

时间:2011-07-04 13:51:06

标签: android android-intent widget

我将联系人图片添加到动态窗口小部件中。这是我这部分的代码:

for (int x = 0; x < this.appWidgetIds.length; x++){
        int id = this.appWidgetIds[x];
        RemoteViews rv = new RemoteViews(this.context.getPackageName(), R.layout.widget);
        for (int i = 0; i < maxCount; i++){
            String lookupKey = sortedItems.get(i).getLookupKey();
            Tools.ToLog("LOOKUPKEY=" + lookupKey);
            Bitmap bmp = Contact.getContactPicture(this.context, lookupKey);
            if (bmp != null){
                Intent intent = new Intent(context, ContactsWidget.class);
                intent.setAction(ACTION_WIDGET_RECEIVER);
                intent.putExtra(ITENT_LOOKUPKEY, lookupKey);
                Tools.ToLog("LOOKUPKEY - IDENT=" + intent.getStringExtra(ITENT_LOOKUPKEY));

                RemoteViews itemView = new RemoteViews(this.context.getPackageName(), R.layout.widget_itemview);
                itemView.setImageViewBitmap(R.id.widget_ImageView, bmp);
                PendingIntent actionPendingIntent = PendingIntent.getBroadcast(this.context, 0, intent, 0);
                itemView.setOnClickPendingIntent(R.id.widget_ImageView, actionPendingIntent);
                rv.addView(R.id.widgetContainer, itemView);
            }
        }
        appWidgetManager.updateAppWidget(id, rv);
    }

我在日志上测试了Lookupkey和来自intent的lookupkey,它在这一边工作(变量lookupKey == intent.getStringExtra(ITENT_LOOKUPKEY))。当我现在收到意图因为我点击了联系人图片时,意图额外信息总是相同的。无论我点击哪张联系人图片。这是接收代码:

public void onReceive(Context context, Intent intent) {
    if (intent.getAction().equals(ACTION_WIDGET_RECEIVER)) {
        String lookupKey = intent.getStringExtra(ITENT_LOOKUPKEY);
        Toast.makeText(context, "Lookup Key: " + lookupKey, Toast.LENGTH_SHORT).show();
        //Contact.openContact(this.context, lookupKey);             
    }
    super.onReceive(context, intent);
}

始终是第一个添加的联系人的lookupKey。在第一个函数中添加另一个联系人之前,我是否必须以某种方式清除意图?问题是什么?

1 个答案:

答案 0 :(得分:2)

您只有一个PendingIntent

引用文档:

  

如果创建应用程序稍后重新检索相同类型的PendingIntent(相同的操作,相同的Intent操作,数据,类别和组件以及相同的标志),它将接收表示相同令牌的PendingIntent,如果它仍然有效

由于每次都有相同的操作(getActivity())和相同的Intent路由部分,因此只有一个PendingIntent

不要将操作设置为ACTION_WIDGET_RECEIVER,而是将其设置为您在循环中创建的每个操作。