getResources().getIdentifier("textView01", "id", "cn.xxx.xxx");

 
使用getIdentifier()获取资源Id
Java代码 复制代码 收藏代码
  1. int i=  getResources().getIdentifier("icon""drawable", getPackageName()) ;   
  2. if(i>0)         
  3.   {Log.i("aa","aa");}   
  4. else         
  5.   {Log.i("vbv","aa");}  
int i=  getResources().getIdentifier("icon", "drawable", getPackageName()) ;
if(i>0)      
  {Log.i("aa","aa");}
else      
  {Log.i("vbv","aa");}

或者
Java代码 复制代码 收藏代码
  1. int resID = getResources().getIdentifier("org.loveandroid.androidtest:drawable/gallery_photo_1",null,null);   
  2.     
  3. int resID = getResources().getIdentifier("org.anddev.android.testproject:drawable/bug"nullnull);    
  4. // or    
  5. int resID = getResources().getIdentifier("bug""drawable""org.anddev.android.testproject");   
  6.     
  7. //第一个参数:full_package:type/filename_without_ending是这种格式 然后其他的可以为null  
int resID = getResources().getIdentifier("org.loveandroid.androidtest:drawable/gallery_photo_1",null,null);
 
int resID = getResources().getIdentifier("org.anddev.android.testproject:drawable/bug", null, null); 
// or 
int resID = getResources().getIdentifier("bug", "drawable", "org.anddev.android.testproject");
 
//第一个参数:full_package:type/filename_without_ending是这种格式 然后其他的可以为null


Java代码 复制代码 收藏代码
  1. int idFlag = getResources().getIdentifier(getPackageName() + ":drawable/flag"nullnull);        
  2. // 或是        
  3. int idFlag = getResources().getIdentifier("flag""drawable", getPackageName());      
int idFlag = getResources().getIdentifier(getPackageName() + ":drawable/flag", null, null);     
// 或是     
int idFlag = getResources().getIdentifier("flag", "drawable", getPackageName());    



Java代码 复制代码 收藏代码
  1. var Drawable[] dw = new Drawable[10];        
  2.        
  3. for (int i = 1; i <= 10; i++) {        
  4.   int id = getResources().getIdentifier("flag" + i,  "drawable", getPackageName());        
  5.   dw[i-1] = getResources().getDrawable(id);    
  6. }    
var Drawable[] dw = new Drawable[10];     
    
for (int i = 1; i <= 10; i++) {     
  int id = getResources().getIdentifier("flag" + i,  "drawable", getPackageName());     
  dw[i-1] = getResources().getDrawable(id); 
}  


Java代码 复制代码 收藏代码
  1. //用反射法 可以得到 所有的资源   
  2. private void         
  3.   _DumpAllResourceIDs(Class<?> classType)         
  4.     throws IllegalArgumentException {        
  5.   Field[] fIDs = classType.getFields();        
  6.                 
  7.   try {        
  8.     for (int i = 0; i < fIDs.length; i++) {        
  9.       Field fld = fIDs[i];        
  10.       int nID = fld.getInt(null);        
  11.       Log.d("dbg",        
  12.         classType.getSimpleName() + " " +         
  13.         i + ": " +         
  14.         fld.getName() + "=" +        
  15.         nID);        
  16.     }        
  17.   } catch (Exception e) {        
  18.     throw new IllegalArgumentException();        
  19.   }        
  20. }     
//用反射法 可以得到 所有的资源
private void      
  _DumpAllResourceIDs(Class<?> classType)      
    throws IllegalArgumentException {     
  Field[] fIDs = classType.getFields();     
             
  try {     
    for (int i = 0; i < fIDs.length; i++) {     
      Field fld = fIDs[i];     
      int nID = fld.getInt(null);     
      Log.d("dbg",     
        classType.getSimpleName() + " " +      
        i + ": " +      
        fld.getName() + "=" +     
        nID);     
    }     
  } catch (Exception e) {     
    throw new IllegalArgumentException();     
  }     
}   


Java代码 复制代码 收藏代码
  1. import java.lang.reflect.Field;        
  2. ...        
  3.   _DumpAllResourceIDs(R.layout.class);        
  4.   _DumpAllResourceIDs(R.drawable.class);     
import java.lang.reflect.Field;     
...     
  _DumpAllResourceIDs(R.layout.class);     
  _DumpAllResourceIDs(R.drawable.class);   


Java代码 复制代码 收藏代码
  1. //结果   
  2. R$layout 0: main=2130903040       
  3. R$layout 1: small_spinner_dropdown_item=2130903041       
  4. R$drawable 0: icon=2130837504    
//结果
R$layout 0: main=2130903040    
R$layout 1: small_spinner_dropdown_item=2130903041    
R$drawable 0: icon=2130837504  


有时候我们需要动态的取得一个一个控件的id,然后进行操作,经过在网上查找,找到了一下方法

getResources().getIdentifier("textView01", "id", "cn.xxx.xxx");

第一个参数为ID名,第二个为资源属性是ID或者是Drawable,第三个为包名。

做项目过程中遇到一个问题,从数据库里读取图片名称,然后调用图片。直接用R.drawable.?无法调用。查了好多地方最后找到了个方法,分享给大家,希望有帮助。
主要由两种方法,个人建议第二种。
1. 不把图片放在res/drawable下,而是存放在src某个package中(如:com.drawable.resource),这种情况下的调用方法为:
String path = "com/drawable/resource/imageName.png";
InputStream is = getClassLoader().getResourceAsStream(path);
Drawable.createFromStream(is, "src");

2. 如果还是希望直接使用res/drawable中的图片,就需要通过下面的方法了:
假设创建工程的时候,填写的package名字为:com.test.image
int resID = getResources().getIdentifier("imageName", "drawable", "com.test.image");
Drawable image = getResources().getDrawable(resID);
原文地址:https://www.cnblogs.com/carbs/p/2601811.html