我一直在为 Android 开发一个小部件。它应该做的一件事是显示一周中的当前日期和月份中的日期。我认为我的代码没问题,但由于某种原因它永远不会更新。我的提供程序中的更新周期设置为 30 分钟,但我认为这无关紧要(无论如何我都尝试将其设置为 1 秒并且它没有改变任何东西)。此外,如果我让它在 LogCat 中打印一周中的当前日期和月份中的日期,它工作正常,那么我真的不知道它为什么不更新。请帮帮我!这是我的代码:
public class Henk extends AppWidgetProvider {
AppWidgetManager appWidgetManager;
ComponentName componentName;
RemoteViews remoteViews;
LocationManager locationManager;
@Override
public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
// Update the current date
this.appWidgetManager = appWidgetManager;
componentName = new ComponentName(context, Henk.class);
remoteViews = new RemoteViews(context.getPackageName(), R.layout.main);
SimpleDateFormat dayofweekformat = new SimpleDateFormat("EEEE");
Date dayofweekdate = new Date(System.currentTimeMillis());
String dayofweeklowercase = dayofweekformat.format(dayofweekdate);
String dayofweek = dayofweeklowercase.toUpperCase();
SimpleDateFormat monthformat = new SimpleDateFormat("MMMM dd, yyyy");
Date monthdate = new Date(System.currentTimeMillis());
String month = monthformat.format(monthdate);
Log.d("TAG", "----> DAY OF WEEK: " + dayofweek); // Fine in LogCat
Log.d("TAG", "----> MONTH AND DATE: " + month); // Fine in LogCat
remoteViews.setTextViewText(R.id.widget_textview1, dayofweek);
remoteViews.setTextViewText(R.id.widget_textview2, month);
appWidgetManager.updateAppWidget(componentName, remoteViews);
}
}
编辑:
我已经实现了Doomsknight提供的解决方案,所以现在我认为我的 onUpdate() 方法应该没问题。它仍然没有显示我的日期和日期。然而,我注意到,当我测试运行它时,onUpdate() 实际上是在我的配置活动关闭之前执行的。在我的配置活动中,我有以下代码来初始化我的小部件(至少这是它应该做的),我认为错误就在这里:
public void onClick(View view) {
// Launch the Widget and close the configuration Activity
Intent intent2 = new Intent(context, Henk.class);
PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent2, 0);
remoteViews.setOnClickPendingIntent(R.id.configuration_button, pendingIntent);
appWidgetManager.updateAppWidget(appWidgetID, remoteViews);
Log.d("TAG", "----> APP WIDGET ID: " + appWidgetID);
Log.d("TAG", "----> REMOTEVIEWS: " + remoteViews);
Intent result = new Intent();
result.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetID);
setResult(RESULT_OK, result);
finish();
}