当我在调试模式下运行时,我似乎无法访问服务内部的任何断点,为什么会这样?
@Override
public void onUpdate(Context context, AppWidgetManager appWidgetManager,
int[] appWidgetIds) {
context.startService(new Intent(context, UpdateService.class));
}
public static class UpdateService extends Service {
@Override
public void onStart(Intent intent, int startId) {
// Build the widget update for today
RemoteViews updateViews = buildUpdate(this);
// Push update for this widget to the home screen
ComponentName thisWidget = new ComponentName(this, WidgetProvider.class);
AppWidgetManager manager = AppWidgetManager.getInstance(this);
manager.updateAppWidget(thisWidget, updateViews);
}
public RemoteViews buildUpdate(Context context) {
return new RemoteViews(context.getPackageName(), R.id.widget_main_layout);
}
@Override
public IBinder onBind(Intent intent) {
return null;
}
}
答案 0 :(得分:2)
您的Service
可能未在清单中注册。或者您的AppWidgetProvider
可能未在清单中注册。
答案 1 :(得分:2)
“onUpdate” - 方法仅在小部件初始化(例如放在主屏幕上)或updatePeriodMillis过期时执行。如果你想执行服务,例如通过单击窗口小部件,您必须“附加”这样的待处理意图:
@Override
public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
final Intent intent = new Intent(context, UpdateService.class);
PendingIntent pendingIntent = PendingIntent.getService(context, 0, intent, 0);
// Get the layout for the App Widget and attach an on-click listener to
// the button
RemoteViews views = new RemoteViews(context.getPackageName(), R.layout....);
views.setOnClickPendingIntent(R.id.button, pendingIntent);
for(int i=0,n=appWidgetIds.length;i<n;i++){
int appWidgetId = appWidgetIds[i];
appWidgetManager.updateAppWidget(appWidgetId , views);
}
(清理了工作小部件的版本)。
关键是,onUpdate()方法实际上很少被执行。与小部件的真实交互是通过挂起的意图指定的。
答案 2 :(得分:0)
您可能想要考虑不使用服务来处理您正在做的事情。如果它每天只运行一次updateViews(),那么请考虑将XML:updatePeriodMillis设置为链接到appwidget的XML文件中的86400000。您的XML文件看起来像这样:
<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
android:minWidth="72dp"
android:maxWidth="72dp"
android:updatePeriodMillis="86400000" >
</appwidget-provider>
这将使android每天更新你的appwidget,而不会在后台运行可能被用户正在运行的任务杀手杀死然后停止更新小部件的服务。只需注意,如果您需要更新速度超过每30分钟一次,那么android:updatePeriodMillis将无法工作(它的最小值为30分钟),此时我建议使用AlarmManager它会比服务耗尽更少的电池,也不会被任务杀手杀死。