我有一个简单的Widget(Android 2.1),它只包含一个LinearLayout,它本身包含一个ImageButton。 ImageButton有一个点击监听器。 问题是:如果我在我的主屏幕上放置了几个相同的小部件,有些正在工作(按下按钮时调用了监听器),有些则不行!我看不出任何有效的模式,哪些没有。
这是小部件布局:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@null">
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/ImageButton01"
android:src="@drawable/widget_running"
android:background="@null">
</ImageButton>
这是小部件提供程序代码:
public class GPAppWidgetProvider extends AppWidgetProvider {
private String mTag = getClass().getSimpleName();
@Override
public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
final int N = appWidgetIds.length;
Log.e(mTag, "onUpdate ");
// Perform this loop procedure for each App Widget that belongs to this
// provider
for (int i = 0; i < N; i++) {
Log.e(mTag, "widget onUpdate one loop");
int appWidgetId = appWidgetIds[i];
// Create an Intent
Intent intent = new Intent(context, GPService.class).setAction(ACTION_WIDGET_TOGGLE_PAUSE);
intent.putExtra("widgetId", appWidgetId);
PendingIntent pauseIntent = PendingIntent.getService(context, 0, intent, 0);
RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.gp_appwidget);
views.setOnClickPendingIntent(R.id.ImageButton01, pauseIntent);
// widget update
appWidgetManager.updateAppWidget(appWidgetId, views);
}
}
}
答案 0 :(得分:0)
我遇到了同样的问题。
当您调用“getService”时,不要忘记设置不同的“requestCode”:
public static PendingIntent getService (Context context, int requestCode, Intent intent, int flags)
确保每个小部件的“appWidgetId”不同。