在Android Studio中获取随机图片

时间:2016-10-10 16:34:23

标签: android image android-studio random

我正在尝试为Android应用程序(练习)创建一个纸牌游戏,我想知道如何将随机卡上传到玩家手中?我已经实现了GUI,我想我需要类似于typedarray和

的内容
   ((ImageView)findViewById(R.id.textView18)).setImageResource(R.drawable.1c);

我是否正沿着正确的轨道移动?

1 个答案:

答案 0 :(得分:4)

你可以得到这样的随机图像:

int[] images = {R.drawable.img1,R.drawable.img2,R.drawable.img3,R.drawable.img4};
Random rand = new Random();
imageView.setImageResource(images[rand.nextInt(images.length)]);