我正在尝试做小工具,它会在点击时更新自己。 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 ...
}
}
答案 0 :(得分:0)
我想我已经解决了,问题出在IntentService
,服务更新小部件通过远程视图,但没有注册setOnClickPendingIntent
。