我想通过名称而不是int id来访问像String或Drawable这样的资源。
我会使用哪种方法?
答案 0 :(得分:307)
如果我理解正确,这就是你想要的
int drawableResourceId = this.getResources().getIdentifier("nameOfDrawable", "drawable", this.getPackageName());
“this”是一个活动,只是为了澄清。
如果您想要strings.xml中的String或UI元素的标识符,请替换“drawable”
int resourceId = this.getResources().getIdentifier("nameOfResource", "id", this.getPackageName());
我警告你,这种获取标识符的方式非常慢,只在需要的地方使用。
官方文档链接:Resources.getIdentifier(String name, String defType, String defPackage)
答案 1 :(得分:130)
这将是:
R.drawable.resourcename
确保您没有导入Android.R
名称空间,因为它可能会混淆Eclipse(如果您正在使用它)。
如果这不起作用,您可以始终使用上下文的getResources
方法...
Drawable resImg = this.context.getResources().getDrawable(R.drawable.resource);
将this.context
作为Activity
,Service
或任何其他Context
子类进行初始化。
<强>更新强>
如果它是您想要的名称,则Resources
类(由getResources()
返回)具有getResourceName(int)
方法和getResourceTypeName(int)
?
更新2 :
Resources
类有这个方法:
public int getIdentifier (String name, String defType, String defPackage)
返回指定资源名称的整数,类型&amp;封装
答案 2 :(得分:23)
int resourceID =
this.getResources().getIdentifier("resource name", "resource type as mentioned in R.java",this.getPackageName());
答案 3 :(得分:11)
答案 4 :(得分:8)
Kotlin Version
通过Extension Function
要按名称查找资源ID,请在Kotlin中将以下代码段添加到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")
.
.
.
答案 5 :(得分:6)
我建议您使用我的方法获取资源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;
}
答案 6 :(得分:3)
// 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());
答案 7 :(得分:1)
在科特林,以下对我来说很好:
val id = resources.getIdentifier("your_resource_name", "drawable", context?.getPackageName())
如果资源位于mipmap文件夹中,则可以使用参数“ mipmap”代替“ drawable”。
答案 8 :(得分:0)
我发现this class非常有助于处理资源。它有一些定义的方法来处理尺寸,颜色,绘图和字符串,如下所示:
public static String getString(Context context, String stringId) {
int sid = getStringId(context, stringId);
if (sid > 0) {
return context.getResources().getString(sid);
} else {
return "";
}
}
答案 9 :(得分:0)
除了@lonkly解决方案
方法:
/**
* 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());
}
}