我正在为我的项目创建小部件。在该窗口小部件中,Prev和Next按钮可用。 在相同的小部件中在主页中创建两次。如果我点击第一个小部件的上一个第二个也改变。我不想改变另一个。
我的代码:
Intent WidgetIntent = new Intent(this, UpdateService.class);
PendingIntent NextIntent = PendingIntent.getService(this, 1, WidgetIntent.putExtra("dir", 1), PendingIntent.FLAG_UPDATE_CURRENT);
WidgetIntent.setData(Data);
WidgetIntent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
Intent PrevIntent = new Intent(this, UpdateService.class);
PrevIntent.setData(Data);
PrevIntent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
PendingIntent PrevPIntent = PendingIntent.getService(this, 2, PrevIntent.putExtra("dir", -1), PendingIntent.FLAG_UPDATE_CURRENT);
如果有人知道在这里分享。
感谢,