每当我重启电话或升级应用程序(在测试设备和Android
模拟器上)时,小部件都会停止更新,直到创建新的小部件实例为止。然后,小部件的两个实例将再次开始更新。我以为是在旧的onUpdate()
上调用WidgetIds
的事,但我不知道。
这是我的代码的一小段。
public class NewAppWidget extends AppWidgetProvider {
private static final String refresh = "b_refresh";
static void updateAppWidget(Context context, AppWidgetManager appWidgetManager, int appWidgetId) {
RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.new_app_widget);
Intent intent = new Intent(context, NewAppWidget.class);
intent.setAction(refresh);
intent.putExtra("appWidgetId", appWidgetId);
views.setOnClickPendingIntent(R.id.refresh, PendingIntent.getBroadcast(context,0,intent, PendingIntent.FLAG_UPDATE_CURRENT));
appWidgetManager.updateAppWidget(appWidgetId, views);
}
@Override
public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
for (int appWidgetId : appWidgetIds) {
updateAppWidget(context, appWidgetManager, appWidgetId);
}
}
@Override
public void onReceive(Context context, Intent intent) {
if(refresh.equals(intent.getAction())) {
Toast.makeText(context, "Clicked2", Toast.LENGTH_LONG).show();
}
}
}
编辑:这是我的manifest.xml
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver android:name=".NewAppWidget">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
<action android:name="android.appwidget.action.EXTRA_APPWIDGET_IDS"/>
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/new_app_widget_info" />
</receiver>
<activity android:name=".NewAppWidgetConfigureActivity">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
</intent-filter>
</activity>
</application>
答案 0 :(得分:0)
将super.onReceive()
的呼叫添加到您的onReceive()
。
说明
如果查看基类onReceive()
的源代码,您会发现它实现了管理小部件生命周期的框架逻辑的一部分。 (docs也暗示了这一点)。它处理APPWIDGET_UPDATE
,实际上是负责首先调用onUpdate()
的原因。 (例如,当系统启动时,它需要绘制您的初始小部件时,会向您的应用发送一个APPWIDGET_UPDATE
,并将其传递给onReceive()
)。因此,对于您的情况,我不确定100%如何onUpdate()
被 调用,但是我假设您在其他地方有一些调用updateAppWidget()
的代码,这就是您的小部件似乎可以瞬间工作的唯一原因。