即時通訊新手android.For顯示隨機圖像我用arraylist。顯示隨機圖像
ArrayList<Integer> List = new ArrayList<Integer>();
for(int i=0;i<10;i++)
{
List.add(i);
System.out.println("Random Images"+List.add(i));
}
Collections.shuffle(List);
for(int i=0;i<10;i++){
imageArr[i] = (ImageView)findViewById(id[List.get(i)]);
System.out.println("Display Images"+List.get(i));
}
}
它在logcat中正確運行,但應該怎麼做才能在模擬器屏幕上顯示圖像。請推薦
你想到的是,仿真器正確解釋你的Sysouts? – RoflcoptrException
你在Logcat中看到的是你正在洗牌ArrayList,它與圖像本身無關。 –
是的,即使在logcat.Logcat中得到正確的結果是:08-23 15:53:07.053:INFO/System.out(453):Random Imagestrue 08-23 15:53:07.053:INFO/System.out(453 ):Random Imagestrue 08-23 15:53:07.053:INFO/System.out(453):Display Images6 08-23 15:53:07.060:INFO/System.out(453):Display Images1 08-23 15:53:07.103:INFO/System.out(453):Random Imagestrue 08-23 15:53:07.103:INFO/System.out(453):Random Imagestrue 08-23 15:53:07.180:INFO/System.out(453):Display Images5 08-23 15:53:07.180:INFO/System.out(453):Display Images0 – Sam