标签: android android-xml
我希望使用
image.setImageResource(R.drawable.photo1);
如何将“photo1”更改为“photo”+#(递增数字)以便我可以将其与迭代一起使用?
答案 0 :(得分:3)
int resID = getResources().getIdentifier("photo"+1,"drawable", getPackageName()); image.setImageResource(resID);