如何获得具有已知资源名称的资源id ?

我想访问一个资源,如字符串或Drawable通过它的名字,而不是它的int id。

我该用哪种方法呢?

248879 次浏览

它会是这样的:

R.drawable.resourcename

确保没有导入Android.R名称空间,因为它会混淆Eclipse(如果您正在使用它的话)。

如果这不起作用,你总是可以使用上下文的getResources方法…

Drawable resImg = this.context.getResources().getDrawable(R.drawable.resource);

其中this.context被初始化为ActivityService或任何其他Context子类。

更新:

如果它是你想要的名称,Resources类(由getResources()返回)有一个getResourceName(int)方法,和一个getResourceTypeName(int)?

更新2:

Resources类有这样的方法:

public int getIdentifier (String name, String defType, String defPackage)

返回指定资源名称的整数,类型&包中。

如果我没理解错的话,这就是你想要的

int drawableResourceId = this.getResources().getIdentifier("nameOfDrawable", "drawable", this.getPackageName());

这里的“this”是一个活动,写出来只是为了澄清。

如果你想要strings.xml中的String或者UI元素的标识符,请替换为"drawable"

int resourceId = this.getResources().getIdentifier("nameOfResource", "id", this.getPackageName());

我警告您,这种获取标识符的方法非常缓慢,仅在需要时使用。

官方文档链接:资源。getIdentifier(字符串名称,字符串defType,字符串defPackage)

我建议您使用我的方法来获取资源ID。它比使用getIdentidier()方法更有效,后者比较慢。

代码如下:

/**
* @author Lonkly
* @param variableName - name of drawable, e.g R.drawable.<b>image</b>
* @param с - class of resource, e.g R.drawable.class or R.raw.class
* @return integer id of resource
*/
public static int getResId(String variableName, Class<?> с) {


Field field = null;
int resId = 0;
try {
field = с.getField(variableName);
try {
resId = field.getInt(null);
} catch (Exception e) {
e.printStackTrace();
}
} catch (Exception e) {
e.printStackTrace();
}
return resId;


}
int resourceID =
this.getResources().getIdentifier("resource name", "resource type as mentioned in R.java",this.getPackageName());

从字符串中获取资源ID的简单方法。这里resourceName是可绘制文件夹中的ImageView资源的名称,它也包含在XML文件中。

int resID = getResources().getIdentifier(resourceName, "id", getPackageName());
ImageView im = (ImageView) findViewById(resID);
Context context = im.getContext();
int id = context.getResources().getIdentifier(resourceName, "drawable",
context.getPackageName());
im.setImageResource(id);

我发现这个类非常有助于处理资源。它有一些定义的方法来处理尺寸,颜色,drawables和字符串,就像这个:

public static String getString(Context context, String stringId) {
int sid = getStringId(context, stringId);
if (sid > 0) {
return context.getResources().getString(sid);
} else {
return "";
}
}

除了@lonkly解决方案

  1. 参见反射和现场可访问性
  2. 不必要的变量

方法:

/**
* lookup a resource id by field name in static R.class
*
* @author - ceph3us
* @param variableName - name of drawable, e.g R.drawable.<b>image</b>
* @param с            - class of resource, e.g R.drawable.class or R.raw.class
* @return integer id of resource
*/
public static int getResId(String variableName, Class<?> с)
throws android.content.res.Resources.NotFoundException {
try {
// lookup field in class
java.lang.reflect.Field field = с.getField(variableName);
// always set access when using reflections
// preventing IllegalAccessException
field.setAccessible(true);
// we can use here also Field.get() and do a cast
// receiver reference is null as it's static field
return field.getInt(null);
} catch (Exception e) {
// rethrow as not found ex
throw new Resources.NotFoundException(e.getMessage());
}
}

Kotlin Version通过Extension Function

在Kotlin中通过名称查找资源id,在Kotlin文件中添加以下代码片段:

ExtensionFunctions.kt

import android.content.Context
import android.content.res.Resources


fun Context.resIdByName(resIdName: String?, resType: String): Int {
resIdName?.let {
return resources.getIdentifier(it, resType, packageName)
}
throw Resources.NotFoundException()
}

Usage

现在,只要你使用resIdByName方法有上下文引用,所有的资源id都可以访问:

val drawableResId = context.resIdByName("ic_edit_black_24dp", "drawable")
val stringResId = context.resIdByName("title_home", "string")
.
.
.
// image from res/drawable
int resID = getResources().getIdentifier("my_image",
"drawable", getPackageName());
// view
int resID = getResources().getIdentifier("my_resource",
"id", getPackageName());


// string
int resID = getResources().getIdentifier("my_string",
"string", getPackageName());

在Kotlin以下工作对我来说很好:

val id = resources.getIdentifier("your_resource_name", "drawable", context?.getPackageName())

如果资源放在mipmap文件夹中,你可以使用参数“mipmap”而不是“drawable”。