其他分享
首页 > 其他分享> > android-更新小部件onClick,启动服务似乎不起作用

android-更新小部件onClick,启动服务似乎不起作用

作者:互联网

我遵循了大量的教程,在google和堆栈溢出上进行搜索,并在触摸时想出了以下代码来更新我的小部件:

public class WidgetService extends Service{

    @Override
    public void onStart(Intent intent, int startId) {
        Log.i("WidgetService", "Called");
        String fakeUpdate = null;
        Random random = new Random();

        AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(this
                .getApplicationContext());

        int[] appWidgetIds = intent
                .getIntArrayExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS);
        if (appWidgetIds.length > 0) {
            for (int widgetId : appWidgetIds) {
                int nextInt = random.nextInt(100);
                fakeUpdate = "Random: " + String.valueOf(nextInt);
                RemoteViews remoteViews = new RemoteViews(getPackageName(),
                        R.layout.widget);
                remoteViews.setTextViewText(R.id.txt_updated, fakeUpdate);
                appWidgetManager.updateAppWidget(widgetId, remoteViews);
            }
            stopSelf();
        }
        super.onStart(intent, startId);
    }

    @Override
    public IBinder onBind(Intent intent) {
        return null;
    }
}

对于小部件提供商:

public class Widget extends AppWidgetProvider{

    @Override
    public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds){
        RemoteViews remoteViews = new RemoteViews(context.getPackageName(),
                R.layout.widget);
        Intent intent = new Intent(context.getApplicationContext(),
                WidgetService.class);
        intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS, appWidgetIds);
        PendingIntent pendingIntent = PendingIntent.getService(
                context.getApplicationContext(), 0, intent,
                PendingIntent.FLAG_UPDATE_CURRENT);
        remoteViews.setOnClickPendingIntent(R.id.cnt_widget, pendingIntent);
        appWidgetManager.updateAppWidget(appWidgetIds, remoteViews);

        context.startService(intent);
    }
}

在清单中:

<receiver
                android:label="@string/next_trip_text"
                android:name=".widget.Widget" >
                <intent-filter >
                    <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
                </intent-filter>

                <meta-data
                    android:name="android.appwidget.provider"
                    android:resource="@xml/widget_info" />
            </receiver>

和xml:

<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
        android:minWidth="272dp"
        android:minHeight="72dp"
        android:updatePeriodMillis="0"
        android:initialLayout="@layout/widget"
        android:configure="se.webevo.basttrafik.widget.WidgetConfigActivity" >
</appwidget-provider>

该服务似乎根本没有被调用.有任何想法吗?

标签:android-service,android-widget,android
来源: https://codeday.me/bug/20191202/2085785.html