2

クリックしたときにウィジェットビューの画像を変更しようと何度も試みましたが、うまくいきません。それは私のコードです:

  public class myAppWidgetProvider extends AppWidgetProvider {

        public static String ACTION_WIDGET_REFRESH = "ActionReceiverRefresh";
         //...

    @Override
        public void onUpdate(Context context, AppWidgetManager appWidgetManager,
                int[] appWidgetIds) {

            final int N = appWidgetIds.length;

            // Perform this loop procedure for each App Widget that belongs to this provider
            for (int i=0; i<N; i++) {
                int appWidgetId = appWidgetIds[i];

            Intent intent = new Intent(context, myAppWidgetProvider.class);
            intent.setAction(ACTION_WIDGET_REFRESH);
            PendingIntent pendingIntent = PendingIntent.getBroadcast(context, 0, intent, 0);
            RemoteViews rv = new RemoteViews(context.getPackageName(), R.layout.widget_layout);
            rv.setOnClickPendingIntent(R.id.imageView, pendingIntent);
            appWidgetManager.updateAppWidget(appWidgetId, rv);
            }

onReceive では、ウィジェットのビューをクリックしたときに受信したいのですが、うまくいきません:

@Override
    public void onReceive(Context context, Intent intent) {
        super.onReceive(context, intent);

        final String action = intent.getAction();
        if (AppWidgetManager.ACTION_APPWIDGET_UPDATE.equals(action)) {

            RemoteViews rmv = new RemoteViews(context.getPackageName(), R.layout.widget_layout);
                   //and this change doesn't work :(( \/
            rmv.setImageViewResource(R.id.imageView, R.drawable.button_power_on_small);
        }
    }

それは私のアンドロイドマニフェストレシーバーです:

<receiver android:name="myAppWidgetProvider" android:exported="false" android:icon="@drawable/button_power_off">
    <intent-filter>
        <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
        <action android:name="com.xxx.xxx.myAppWidgetProvider.ACTION_WIDGET_REFRESH"/>
        <action android:name="android.appwidget.action.APPWIDGET_DELETED"/>
        <action android:name="android.media.RINGER_MODE_CHANGED"/>
</intent-filter>
    <meta-data android:name="android.appwidget.provider"
               android:resource="@xml/widget_info_provider" />
</receiver>

誰かが私に解決策を提案してくれたら、私は感謝します。

4

1 に答える 1

2

変化する

<action android:name="com.xxx.xxx.myAppWidgetProvider.ACTION_WIDGET_REFRESH"/>

<action android:name="ActionReceiverRefresh"/>

BroadcastReceiver が間違ったアクション文字列を探しています。AndroidManifest は XML ファイルであることに注意してください。String の実際の値を入力する必要があります。Java 定数を指しても機能しません。

于 2013-07-17T22:20:50.513 に答える