如何将像“R.drawable.online”这样的字符串转换为可以表示图像的路径? 我该怎么做?
答案 0 :(得分:0)
看一下这个答案:
Android and getting a view with id cast as a string
顺便说一下......使用路径无法访问那种资源 ...你必须使用它的整数表示。
答案 1 :(得分:0)
如果您的文件夹/drawable/online.png中有图像 您将图像加载到ImageView ...
ImageView.setImageDrawable(getResources()getDrawable(R.drawable.online));