您的位置:首页 > 其它

使用getIdentifier()获取资源Id

2012-09-24 11:54 393 查看
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);
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: