我将我的项目相关图像存储在可绘制文件夹中。此外,我将图像名称存储在字符串变量中,并且动态地尝试将这些图像设置为图像视图。但是图像没有显示。请在这方面帮助我。
我的代码:
int res = getResources().getIdentifier(imagename, "drawable", this.getPackageName());
imageview= (ImageView)findViewById(R.id.imageView);
imageview.setImageResource(res);
在上面的代码中,“imagename”是包含图像名称的字符串变量。
提前致谢