int[] images2 = {
R.drawable.wrong, R.drawable.reviewp,
R.drawable.bowl, R.drawable.ic_action_search
};
List<int[]> pic=Arrays.asList(images2);
Collections.shuffle(pic);
Random random = new Random();
for(int i = 0 ; i <= 3 ; i++){
ReciverI[i].setBackgroundResource(images2[ "at here i want to get the image position" ]);
}
画像の位置を取得するのを手伝ってください
これは機能していません
ReciverI[i].setBackgroundResource(images2[Integer.parseInt(pic.get(i).toString())]);
これは私に間違った結果を与えます