我需要将图像列表加载到 RemoteView 中。为此,我使用 ViewFlipper 来显示用户单击下一个和上一个按钮的时间。但是我在使用 ViewFlipper 时遇到的问题是我无法动态添加图像,而如果我从 ViewFlipper 本地的可绘制对象中加载图像,我会得到一次输出。请帮忙。我无法使用 RemoteViews 找到解决方案。我发布我的代码供您参考,如下所示:
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
RemoteViews expandedView = new RemoteViews(this.getPackageName(), R.layout.notification_viewflipper);
expandedView.setOnClickPendingIntent(R.id.img_left,getPendingSelfIntent(MainActivity.this, IMAGE_LEFT));
expandedView.setOnClickPendingIntent(R.id.img_right,getPendingSelfIntent(MainActivity.this, IMAGE_RIGHT));
}
protected PendingIntent getPendingSelfIntent(Context context, String action) {
Intent intent = new Intent(context,MyNotificationReceiver.class);
intent.setAction(action);
return PendingIntent.getBroadcast(context, 0, intent, 0);
}
任何类型的提示和提示都会对我有很大帮助。提前致谢。