每当我重新启动手机或升级应用程序(在测试设备上和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>

最佳答案

将呼叫super.onReceive()添加到onReceive()

说明

如果查看基类onReceive()的源代码,您会发现它实现了用于管理Widget生命周期的框架逻辑的一部分。 (也由docs提示)。它处理APPWIDGET_UPDATE,实际上是首先负责调用onUpdate()的原因。 (例如,当系统启动时,它需要绘制您的初始窗口小部件时,会向您的应用发送一个APPWIDGET_UPDATE并将其传递给onReceive())。因此,就您而言,我不确定100%如何调用onUpdate(),但是我假设您在其他地方有一些调用updateAppWidget()的代码,这是您的小部件似乎可以瞬间工作的唯一原因。

10-07 19:22
查看更多