动态获取数组中的所有图像资源ID

时间:2012-09-05 05:19:09

标签: android

在drawable foder中有很多图像,所以相反手动创建所有图像资源ID的数组,我想动态获取数组中可绘制文件夹的所有图像。 目前我正在使用此代码:

for(int i=1;i<=9;i++)
    {
            int imageKey = getResources().getIdentifier("img"+i, "drawable", getPackageName());
            ImageView image = new ImageView(this);  
            image.setId(imgId);
            image.setImageResource(imageKey);    
            image.setScaleType(ImageView.ScaleType.FIT_XY);
            viewFlipper.addView(image, new LayoutParams(LayoutParams.FILL_PARENT,              LayoutParams.FILL_PARENT));
            imgId++;
        }

但在该代码中,我需要手动编辑图像名称以获取资源ID,但我希望获得任何名称的所有图像..

2 个答案:

答案 0 :(得分:19)

您可以使用Reflection来实现此目标。

导入Field

import java.lang.reflect.Field;

然后在您的代码中写下

Field[] ID_Fields = R.drawable.class.getFields();
int[] resArray = new int[ID_Fields.length];
for(int i = 0; i < ID_Fields.length; i++) {
    try {
        resArray[i] = ID_Fields[i].getInt(null);
    } catch (IllegalArgumentException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
}

resArray[]现在包含对您应用程序中所有drawable的引用。

答案 1 :(得分:7)

好吧,如果您的图片名称是img1,img2等,那么您可以创建一个像

这样的变量
String url = "drawable/"+"img"+i;

int imageKey = getResources().getIdentifier(url, "drawable", getPackageName());

你也可以用你的包名替换你的getPackageName()方法,比如“com.android.resource”
简单来说,一般功能是

public int getIdentifier(String name, String defType, String defPackage)