0

我正在尝试做小部件,它会在点击时自行更新。Co,我创建了以下代码,它就像一个魅力 - 但只有大约 20 分钟然后它停止工作(它不再在点击时更新,但经典的小部件在 XML 工作的指定时间段后自我更新)如果我再次开始工作添加另一个小部件实例,然后再次注册所有意图。

有没有其他人遇到过这个问题?你能看出我的代码有什么问题吗?

在我的小部件提供者中:

        @Override
        public void onUpdate(Context context, AppWidgetManager appWidgetManager,
                int[] appWidgetIds) {
            super.onUpdate(context, appWidgetManager, appWidgetIds);

            final int N = appWidgetIds.length;
            Log.d(tag, "onUpdate");

            for (int i=0; i<N; i++) {
                int appWidgetId = appWidgetIds[i];

                RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.widget_exchange_rate_small);

                Intent intent = new Intent(context, ExchangeRateWidgetService.class);
                intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
                PendingIntent pendingIntent = PendingIntent.getService(context, appWidgetId, intent, PendingIntent.FLAG_UPDATE_CURRENT);

                // Register onClick action for pendingIntent
                views.setOnClickPendingIntent(R.id.wdExchangeRate, pendingIntent);

                appWidgetManager.updateAppWidget(appWidgetId, views);


                try {
                    // Perform first update
                    pendingIntent.send();
                } catch (CanceledException e) {
                    Log.e(tag, "First update has been canceled, this should not normally happend!");
                    e.printStackTrace();
                }
            }

我的服务是如何声明的:

 public class ExchangeRateWidgetService extends IntentService {

    protected void onHandleIntent(Intent intent) {

    // Doing something ...

    }
    }
4

1 回答 1

0

我想我解决了,问题出在IntentService,通过远程视图服务更新了小部件,但没有注册setOnClickPendingIntent

于 2012-11-06T15:35:13.177 回答