android 已知资源名称获取资源ID

转自:http://blog.csdn.net/shaojie519/article/details/6746716


在android中,我们经常使用资源文件的id来代替这个资源,如 R.drawable.*** ,

那怎样通过文件名得到这个资源的Id的,这里介绍两种方法:

一:通过android已有的方法getIdentifier (String name, String defType, String defPackage)方法。

该方法调用方式有两种:

a. int resId1 = getResources().getIdentifier("bluetooth", "drawable", "com.shao.acts");

b. int resId2 = getResources().getIdentifier("com.shao.acts:drawable/bluetooth", null, null);


二:通过反射机制:   

假定 drawable文件夹中有一bluetooth.png图片。


下面让我们看看代码具体如何实现:

package com.shao.acts;

import java.lang.reflect.Field;

import android.app.Activity;
import android.os.Bundle;

public class GetResIdActivity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        
        //方式一:
        int resId1 = getResources().getIdentifier("bluetooth", "drawable", "com.shao.acts");//包名可以通过方法activity.getPackageName()获得
        if(R.drawable.bluetooth==resId1){
        System.out.println("TRUE");
        }
        //方式二:
        int resId2 = getResources().getIdentifier("com.shao.acts:drawable/bluetooth", null, null);
        if(R.drawable.bluetooth==resId2){
           System.out.println("TRUE");
        }
        //方式三:
        int resId3  = getImage("bluetooth");
        if(R.drawable.bluetooth==resId3){
            System.out.println("TRUE");
         }
    }
    public static int getImage(String pic) {
    	  if(pic==null||pic.trim().equals("")){
    	   return R.drawable.icon;
    	  }
    	  Class draw = R.drawable.class;
    	  try {
    	   Field field = draw.getDeclaredField(pic);
    	   return field.getInt(pic);
    	  } catch (SecurityException e) {
    	   return R.drawable.icon;
    	  } catch (NoSuchFieldException e) {
    	   return R.drawable.icon;
    	  } catch (IllegalArgumentException e) {
    	   return R.drawable.icon;
    	  } catch (IllegalAccessException e) {
    	   return R.drawable.icon;
    	  }
    	 }
}


你可能感兴趣的:(android 已知资源名称获取资源ID)