2

我想将当前动态字符串格式的 R.drawable 转换为整数格式。如何完成。请用一个片段指导我解决它。谢谢。

Integer[] images={R.drawable.apple,R.drawable.mango,R.drawable.banana};
4

2 回答 2

13

你可以用这个

String mDrawableName = "myimg";
int resID = getResources().getIdentifier(mDrawableName , "drawable", getPackageName());

或者

String imageName = "picture";
int resID = getResources().getIdentifier(imageName, "drawable", "package.name");
ImageView image;
image.setImageResource(resID);
于 2012-10-29T04:40:05.427 回答
10

你可以用这个

public int[] getIntIds(Integer[] images){
    int[] temp = new int[images.length];
    String name;
    for(int i=0; i<= images.length; i++){
        name = getResources().getResourceEntryName(images[i]);
        temp[i] = getResources().getIdentifier(name , "drawable", getPackageName());
    }
    return temp;
}
于 2012-10-29T04:57:35.003 回答