web-dev-qa-db-ja.com

Android、文字列からリソースIDを取得していますか?

クラスの1つのメソッドにリソースIDを渡す必要があります。参照が指すidと文字列の両方を使用する必要があります。どうすればこれを達成できますか?

例えば:

R.drawable.icon

この整数IDを取得する必要がありますが、文字列 "icon"へのアクセスも必要です。

メソッドに渡す必要があるのが「アイコン」文字列だけである場合が望ましいでしょう。

137
Hamid

@EboMike:Resources.getIdentifier()が存在することを知りませんでした。

私のプロジェクトでは、次のコードを使用してそれを行いました。

public static int getResId(String resName, Class<?> c) {

    try {
        Field idField = c.getDeclaredField(resName);
        return idField.getInt(idField);
    } catch (Exception e) {
        e.printStackTrace();
        return -1;
    } 
}

R.drawable.iconリソース整数値の値を取得するためにこのように使用されます

int resID = getResId("icon", R.drawable.class); // or other resource class

Resources.getIdentifier()は、私がしたようにリフレクションを使用するよりも遅いというブログ記事を見つけました。 チェックアウト

148
Macarse

この関数を使用して、リソースIDを取得できます。

public static int getResourceId(String pVariableName, String pResourcename, String pPackageName) 
{
    try {
        return getResources().getIdentifier(pVariableName, pResourcename, pPackageName);
    } catch (Exception e) {
        e.printStackTrace();
        return -1;
    } 
}

したがって、drawableを取得するには、このような関数を呼び出します

getResourceId("myIcon", "drawable", getPackageName());

文字列については、このように呼び出すことができます

getResourceId("myAppName", "string", getPackageName());

これを読む

69
Azhar

これは@Macarseの回答に基づいています。

これを使用して、リソースIDをより高速でコードフレンドリーな方法で取得します。

public static int getId(String resourceName, Class<?> c) {
    try {
        Field idField = c.getDeclaredField(resourceName);
        return idField.getInt(idField);
    } catch (Exception e) {
        throw new RuntimeException("No resource ID found for: "
                + resourceName + " / " + c, e);
    }
}

例:

getId("icon", R.drawable.class);
36
Daniel De León

リソース名からapplicationリソースIDを取得する方法は非常に一般的でよく回答された質問です。

リソース名からネイティブAndroidリソースIDを取得する方法は、あまりよく答えられていません。リソース名でAndroid描画可能リソースを取得するための私のソリューションは次のとおりです。

public static Drawable getAndroidDrawable(String pDrawableName){
    int resourceId=Resources.getSystem().getIdentifier(pDrawableName, "drawable", "Android");
    if(resourceId==0){
        return null;
    } else {
        return Resources.getSystem().getDrawable(resourceId);
    }
}

このメソッドは、他のタイプのリソースにアクセスするように変更できます。

29
Martin Pearman

文字列と整数をペアにする必要がある場合、マップはどうですか?

static Map<String, Integer> icons = new HashMap<String, Integer>();

static {
    icons.add("icon1", R.drawable.icon);
    icons.add("icon2", R.drawable.othericon);
    icons.add("someicon", R.drawable.whatever);
}
10
Peter Knego

Resources.getIdentifier()を使用できますが、XMLファイルで使用する文字列の形式、つまりpackage:drawable/iconを使用する必要があります。

9
EboMike

私はこれが好きでした、それは私のために働いています:

    imageView.setImageResource(context.getResources().
         getIdentifier("drawable/Apple", null, context.getPackageName()));
5

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

1つのパラメーターのみを渡したいのに、どのパラメーターを渡してもかまわないと言ったので、リソース識別子を渡して、その文字列名を見つけることができます。

String name = getResources().getResourceEntryName(id);

これは、両方の値を取得する最も効率的な方法です。長い文字列から「アイコン」部分だけを見つけることに煩わされる必要はありません。

3
Steve Waring
public int getDrawableName(Context ctx,String str){
    return ctx.getResources().getIdentifier(str,"drawable",ctx.getPackageName());

}
2
Ivan Vovk

コトリンのアプローチ

inline fun <reified T: Class<R.drawable>> T.getId(resourceName: String): Int {
            return try {
                val idField = getDeclaredField (resourceName)
                idField.getInt(idField)
            } catch (e:Exception) {
                e.printStackTrace()
                -1
            }
        }

使用法:

val resId = R.drawable::class.Java.getId("icon")
1
Arsenius

MonoDroid/Xamarin.Androidでできること:

 var resourceId = Resources.GetIdentifier("icon", "drawable", PackageName);

ただし、GetIdentifierはAndroidでは推奨されないため、次のようにReflectionを使用できます。

 var resourceId = (int)typeof(Resource.Drawable).GetField("icon").GetValue(null);

try/catchを配置するか、渡す文字列を確認することをお勧めします。

1
Daniele D.

あなたのres/layout/my_image_layout.xml内

<LinearLayout ...>
    <ImageView
        Android:id="@+id/row_0_col_7"
      ...>
    </ImageView>
</LinearLayout>

@ + id値でImageViewを取得するには、Javaコード内で次のようにします。

String row = "0";
String column= "7";
String tileID = "row_" + (row) + "_col_" + (column);
ImageView image = (ImageView) activity.findViewById(activity.getResources()
                .getIdentifier(tileID, "id", activity.getPackageName()));

/*Bottom code changes that ImageView to a different image. "blank" (R.mipmap.blank) is the name of an image I have in my drawable folder. */
image.setImageResource(R.mipmap.blank);  
0
Gene

文字列リソース名からDrawable IDを取得するには、このコードを使用しています:

private int getResId(String resName) {
    int defId = -1;
    try {
        Field f = R.drawable.class.getDeclaredField(resName);
        Field def = R.drawable.class.getDeclaredField("transparent_flag");
        defId = def.getInt(null);
        return f.getInt(null);
    } catch (NoSuchFieldException | IllegalAccessException e) {
        return defId;
    }
}
0
bitvale