当出现特定图像(可绘制)时,是否可以更改textView?

时间:2019-08-06 00:01:20

标签: java android

我正在测试此代码以生成随机图像,并且试图使每个生成的图像都有描述

Button buttong;
Random r;

Integer[] images = {
        R.drawable.img250, R.drawable.img484, R.drawable.img485,
};

    imageView = (ImageView) findViewById(R.id.imageView);
    message = (TextView) findViewById(R.id.text_view);
    buttong = (Button) findViewById(R.id.buttong);
    r = new Random()


    buttong.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            imageView.setImageResource(images[r.nextInt(images.length)]);             
        }
    });

我不知道如何很好地解释这一点,但是例如:当图像“ img250”出现时,放上类似“ message.setText(“迈阿密海滩是佛罗里达州南部的一座岛屿城市”);“

我尝试了if / else语句,但是没有运气

1 个答案:

答案 0 :(得分:0)

根据您在评论中发布的if语句,看起来您在设置图像时选择的是随机图像,而在设置文本时选择的是随机图像。首先选择图像,然后使用它来设置图像和文本。

例如:

Integer randomResource = images[r.nextInt(images.length)];
imageView.setImageResource(randomResource );
if (randomResource == R.drawable.img250) {
   message.setText("Miami Beach is a south Florida island city");
} else {
   // ...
}