我想通过其名称而不是其int id访问诸如String或Drawable之类的资源。
我将使用哪种方法?
我想通过其名称而不是其int id访问诸如String或Drawable之类的资源。
我将使用哪种方法?
Answers:
它将类似于:
R.drawable.resourcename
确保没有Android.R
导入名称空间,因为它可能会使Eclipse感到困惑(如果这正是您所使用的名称)。
如果这不起作用,则可以始终使用上下文的getResources
方法...
Drawable resImg = this.context.getResources().getDrawable(R.drawable.resource);
凡this.context
被intialised作为Activity
,Service
或任何其他Context
子类。
更新:
如果是您想要的名称,则Resources
该类(由返回getResources()
)具有一个getResourceName(int)
方法和一个getResourceTypeName(int)
?
更新2:
本Resources
类有这个方法:
public int getIdentifier (String name, String defType, String defPackage)
返回指定资源名称,类型和包的整数。
R.drawable.resourcename
是整数。
如果我理解正确,这就是您想要的
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(字符串名称,字符串defType,字符串defPackage)
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")
.
.
.
一种从字符串获取资源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);
我建议您使用我的方法来获取资源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;
}
// 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());
我发现此类对于处理资源非常有帮助。它具有一些定义的方法来处理变暗,颜色,可绘制对象和字符串,例如:
public static String getString(Context context, String stringId) {
int sid = getStringId(context, stringId);
if (sid > 0) {
return context.getResources().getString(sid);
} else {
return "";
}
}
除了@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());
}
}