web-dev-qa-db-ja.com

既知のリソース名でリソースIDを取得する方法は?

文字列やDrawableなどのリソースに、int idではなく名前でアクセスしたい。

これにはどの方法を使用しますか?

157
Aswan

次のようなものになります。

R.drawable.resourcename

Eclipseを混乱させる可能性があるため、Android.R名前空間がインポートされていないことを確認してください(使用している場合)。

それが機能しない場合は、常にコンテキストの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) 

指定されたリソース名、タイプ、パッケージの整数を返します。

131
Rabid

私が正しく理解したなら、これはあなたが望むものです

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

「これ」は、明確にするために書かれたアクティビティです。

Strings.xmlのStringまたはUI要素の識別子が必要な場合は、「drawable」に置き換えます

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

識別子を取得するこの方法は本当に遅いので、必要な場所でのみ使用してください。

公式ドキュメントへのリンク: Resources.getIdentifier(String name、String defType、String defPackage)

308
Maragues
int resourceID = 
    this.getResources().getIdentifier("resource name", "resource type as mentioned in R.Java",this.getPackageName());
23
user1393422

文字列からリソースIDを取得する簡単な方法。ここで、resourceNameは、XMLファイルにも含まれているドローアブルフォルダー内のリソースImageViewの名前です。

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);
11
Muhammad Adil

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

私のメソッドを使用してリソース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
Lonkly

@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());
    }
}
0
ceph3us

このクラス はリソースを扱うのに非常に役立つことがわかりました。次のように、寸法、色、ドローアブル、および文字列を処理するための定義済みメソッドがいくつかあります。

public static String getString(Context context, String stringId) {
    int sid = getStringId(context, stringId);
    if (sid > 0) {
        return context.getResources().getString(sid);
    } else {
        return "";
    }
}
0
Diego Malone
// 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
Manthan Patel