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インデックスの 1 つをランダムに選択ImageResourceし、ランダムなインデックスに従って画像を表示していました。nに追加したいと思いArrayListます。どうすればいいですか?Androidのメモリに値を保存するより良い方法はありますか?
Int n
ImageResource
n
ArrayList
以下のような ArrayList を宣言します。
ArrayList<Integer> list = new ArrayList<Integer>();
Image を設定したら、次のように ArrayList に追加します。
int n = random.nextInt(images.length - 1); iv.setImageResource(images[n]); list.add(n);