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


Answers:


149

它将类似于:

R.drawable.resourcename

确保没有Android.R导入名称空间,因为它可能会使Eclipse感到困惑(如果这正是您所使用的名称)。

如果这不起作用,则可以始终使用上下文的getResources方法...

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

this.context被intialised作为ActivityService或任何其他Context子类。

更新:

如果是您想要的名称,则Resources该类(由返回getResources())具有一个getResourceName(int)方法和一个getResourceTypeName(int)

更新2

Resources类有这个方法:

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

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


感谢您的答复.R.drawable.resourcename我现在正在使用,我需要通过传递资源名来获取其整数值
Aswan 2010年

2
R.drawable.resourcename 整数。
拉比德

嗨,拉比德(Rabid。),您所说的话,通过传递资源来访问R.drawable .resource值有什么办法
阿斯旺,2010年

我需要通过动态传递资源名来获取该整数值
阿斯旺,2010年

像我这样的thankq,我想并且我想获得可绘制的资源id.how wilto to it
Aswan,2010年

339

如果我理解正确,这就是您想要的

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)


3
这在编写测试以确保存在某些字符串等方面非常有用
。– Ehtesh Choudhury

1
我不知道,我在带有时间戳的getIdentifier()前后添加了一个Log,它告诉我它在0-1毫秒内执行!因此,它并不慢,它非常快!我正在使用它来从资源中获取图像,并且效果很好。在Nexus5x上测试。
Kirill Karmazin

1
@KirillKarmazin:Nexus5X是一款速度非常快的手机,拨打电话所需的1毫秒非常慢。请记住,每个UI帧只有16ms。
Mooing Duck

维基百科说,kotlin于2011年首次出现,您如何在2010
Abhinav Chauhan

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

15

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")
.
.
.    

维基百科说kotlin于2011年首次出现,请问我如何在2010年问这个问题,并在2019年宣布为android,他如何在2010
Abhinav Chauhan

14

一种从字符串获取资源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);

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;

}

并非在所有情况下都适用。例如,如果您具有<string name =“ string.name”> content </ string>,则R.string类将具有string_name字段。此时您的方法将无效。
ddmytrenko 2013年

3
而且您的方法实际上并不快。因为Java类序列化永远无法快速进行。
ddmytrenko 2013年

5
// 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());

0

我发现此类对于处理资源非常有帮助。它具有一些定义的方法来处理变暗,颜色,可绘制对象和字符串,例如:

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

维基百科说,kotlin于2011年首次出现,请问我如何在2010年问这个问题,并在2019年宣布为android,他如何在2010
Abhinav Chauhan

0

除了@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于2011年首次出现,请问我如何在2010年问这个问题,并在2019年宣布为android,他如何在2010
Abhinav Chauhan

0

在科特林,以下对我而言效果很好:

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

如果资源位于mipmap文件夹中,则可以使用参数“ mipmap”代替“ drawable”。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.