2016-07-15 78 views
-3

我有一個應用程序,其中有一個不變的背景圖像。我想在點擊時隨機更改此背景圖片。我該怎麼做?在Android中隨機更改背景圖像

+1

[更改按鈕上的背景圖片點擊android應用程序開發](http://stackoverflow.com/questions/29735869/changing-background-image-on-button-click-android-app-development) – Sanoop

回答

0
int images[] = {R.drawable.image1, R.drawable.image2, R.drawable.image2}; 
view.setBackgroundDrawable(getResources.getDrawable(image[new Random().nextInt(images.length())])); 

創建數組您繪製 設置使用圖像陣列上的繪製,所以你需要一個隨機索引視圖的背景。