既知のリソース名を持つリソースIDを取得するにはどうすればよいですか?


回答:


149

それは次のようなものになります:

R.drawable.resourcename

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

それがうまくいかない場合は、いつでもコンテキストの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私が今使用しているresourcenameを渡して整数値を取得する必要があります
Aswan

2
R.drawable.resourcename ある整数。
Rabid

こんにちはRabid。あなたが言ったことは、リソースを渡すことによってR.drawable .resource値にアクセスすることによって何らかの方法がある
Aswan

resourcenameを動的に渡すことでその整数値が必要
Aswan

このように私は欲しいと私はドローアブルリソースidを取得したいのですが、どうすればいいですか
アスワン

340

私が正しく理解していれば、これはあなたが欲しいものです

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

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

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

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

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

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


3
これは、特定の文字列が存在することを確認かなどを作るためにテストを書くの文脈ではかなり便利です
Ehteshチョードリー

1
わかりません。getIdentifier()の前後にタイムスタンプ付きのログを追加しました。0〜1ミリ秒で実行されることがわかりました。だから、遅くはなく、超高速です!リソースから画像を取得するために使用しており、完全に機能します。Nexus5xでテスト済み。
Kirill Karmazin

1
@KirillKarmazin:Nexus5Xはかなり高速な電話であり、そのような通話の1msは非常に遅いです。各UIフレームはわずか16msであることに注意してください。
Mooing Duck 2018

wikipediaによると、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最初にこの質問は2010年に頼まれたかを教えてくださいすることができ、2011年に登場言うと、それは2019年のアンドロイドのために宣言して、どのように彼は2010年にkotlinアンドロイドの質問をしている
Abhinav Chauhan

14

文字列からリソース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);

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 "";
    }
}

ウィキペディアは、最初2011年に登場し、あなたは彼が2010年にkotlinアンドロイド質問頼まれるか、この質問は、2010年に頼まれた、そしてそれは2019年のアンドロイドのために宣言された方法を教えてくださいすることができkotlin言う
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());
    }
}

ウィキペディアは、最初2011年に登場し、あなたは彼が2010年にkotlinアンドロイド質問頼まれるか、この質問は、2010年に頼まれた、そしてそれは2019年のアンドロイドのために宣言された方法を教えてくださいすることができkotlin言う
Abhinav Chauhan

0

Kotlinでは、以下がうまく機能します。

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

リソースがミップマップフォルダーに配置されている場合、「描画可能」の代わりにパラメーター「ミップマップ」を使用できます。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.