从字符串值设置安卓图像
2022-09-02 11:44:54
目前,我正在我的Android应用程序中绘制PNG图像,如下所示:
ImageView image = new ImageView(context);
image.setImageDrawable(context.getResources().getDrawable(R.drawable.testimage))
如果我在数据库中有图像名称列表,有没有办法使用图像名称设置上面的可绘制对象?我已经有代码来浏览数据库,我只是希望根据从这里获取的值绘制图像。
例如,数据库的记录:
ID: Name: ImageName:
- Test testimage
因此,当我阅读此记录时,我有一个值为“testimage”的字符串,然后我想将可绘制的图像设置为。R.drawable.testimage
我想这样做的一种方式是这样的:
int image = R.drawable.blank; // blank image
// testimage.png is the image name from the database
if(imageName.toString().equals("testimage.png"))
image = R.drawable.testimage;
else if(imageName.toString().equals("another.png"))
image = R.drawable.another;
else if(imageName.toString().equals("etc.png"))
image = R.drawable.etc;
但是,这并不是很有效!
谢谢