Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我的代码的一部分:
int n= random.nextInt(images.length - 1); iv.setImageResource(images[n]);
Int n随机选择一个索引,然后我ImageResource根据随机索引显示图片。现在我想添加n到ArrayList. 我该怎么做?有没有更好的方法在android的内存中保存一个值?
Int n
ImageResource
n
ArrayList
声明一个如下所示的 ArrayList,
ArrayList<Integer> list = new ArrayList<Integer>();
一旦你设置了图像,就将它添加到你的 ArrayList 中,
int n = random.nextInt(images.length - 1); iv.setImageResource(images[n]); list.add(n);