java getidentifier_Android使用getIdentifier()获取资源Id的方法

本文实例讲述了Android使用getIdentifier()获取资源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

有时候我们需要动态的取得一个一个控件的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);

希望本文所述对大家Android程序设计有所帮助。

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值