繁体   English   中英

重新启动或升级应用程序后,我的Android小部件停止更新

[英]After rebooting or upgrading the app, my Android widget stops updating

每当我重启手机或升级应用程序(在测试设备和Android模拟器上)时,小部件都会停止更新,直到我创建新的小部件实例为止。 然后,小部件的两个实例将再次开始更新。 我以为是在旧的WidgetIds上调用onUpdate() ,但我无法弄清楚。 这是我的代码的一小段。

 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 ,实际上,它APPWIDGET_UPDATE负责调用onUpdate() (例如,当系统启动时,它需要绘制您的初始小部件,它将向您的应用程序发送APPWIDGET_UPDATE ,并将其传递给onReceive() )。 因此,对于您的情况,我不确定100%如何onUpdate() onUpdate() ,但是我假设您在其他地方有一些代码调用了updateAppWidget() ,这是您的小部件似乎可以瞬间工作的唯一原因。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM