判断资源存在与否如判断一个drawable的图片存在及通过id加载图片

其实这个问题在我的以前的琐碎里已经记录过了

现在拿出来 免得到时候需要的人在找

int i=  getResources().getIdentifier("icon", "drawable", getPackageName()) ;
      if(i>0)
      {Log.i("aa","aa");}
      else
      {Log.i("vbv","aa");}

 

或者

 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
int idFlag = getResources().getIdentifier(   
      getPackageName() + ":drawable/flag",    
      null, null);   
// 或是   
int idFlag = getResources().getIdentifier(   
      "flag", "drawable", getPackageName());  
 
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);   
}
 用反射发 可以得到 所有的资源
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();   
  }   
}  
 
import java.lang.reflect.Field;   
...   
  _DumpAllResourceIDs(R.layout.class);   
  _DumpAllResourceIDs(R.drawable.class);  
 结果
R$layout 0: main=2130903040  
R$layout 1: small_spinner_dropdown_item=2130903041  
R$drawable 0: icon=2130837504  
 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值