我是初学者,请帮助我。我很混乱。我想使用数据库调用我的图像,但我不知道如何。请帮我。我的做法是这样的。当文本视图也发生变化时,我想自动更改图像视图的图像
String question = Utility.capitalise(currentQ.getQuestion());
TextView qImg = (TextView) findViewById(R.id.question);
qImg.setText(question);
ImageView yes = (ImageView) findViewById(R.id.imageQuestions);
if (qImg.equals("aso"))
// yes = R.drawable.aso;
yes.setBackgroundResource(R.drawable.aso);
else if (qImg.equals("Pusa"))
yes.setBackgroundResource(R.drawable.pusa);
else if (qImg.equals("Daga"))
yes.setBackgroundResource(R.drawable.daga);
question是我在数据库中的问题。它只是一个文本。当问题改变时,图像也在改变。