有一个显示随机图像的代码:
Random rand = new Random();
int rndId = rand.nextInt(24) + 1;
imgName = "drw" + rndInt;
int id = getResources().getIdentifier(imgName, "drawable", getPackageName());
imageView.setImageResource(id);
如何通过在程序中单击图像名称来实现读取图像名称并创建一个新窗口,其中包含每个图像唯一的描述。