Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经说了 N 个我想包含在我的 android 项目资源中的图像,比如 image0 到 imageN-1,当我只在运行时知道时,如何设置图像视图以显示其中一个可绘制对象说 imagei?
类似的东西:
imageView.setImageDrawable(getResources().getDrawable("R.drawable.image"+i));
显然这行不通,但你知道我的意思......
谢谢!
您可以Resources.getIdentifier()按照此博客中的说明使用
Resources.getIdentifier()