文字列やDrawableなどのリソースに、int idではなく名前でアクセスしたい。
これにはどの方法を使用しますか?
次のようなものになります。
R.drawable.resourcename
Eclipseを混乱させる可能性があるため、Android.R
名前空間がインポートされていないことを確認してください(使用している場合)。
それが機能しない場合は、常にコンテキストのgetResources
メソッドを使用できます...
Drawable resImg = this.context.getResources().getDrawable(R.drawable.resource);
this.context
は、Activity
、Service
、またはその他のContext
サブクラスとして初期化されます。
更新:
希望する名前の場合、Resources
クラス(getResources()
によって返される)にはgetResourceName(int)
メソッドとgetResourceTypeName(int)
?があります。
更新2:
Resources
クラスには次のメソッドがあります。
public int getIdentifier (String name, String defType, String defPackage)
指定されたリソース名、タイプ、パッケージの整数を返します。
私が正しく理解したなら、これはあなたが望むものです
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)
int resourceID =
this.getResources().getIdentifier("resource name", "resource type as mentioned in R.Java",this.getPackageName());
文字列からリソース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);
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を取得することをお勧めします。遅い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;
}
@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());
}
}
このクラス はリソースを扱うのに非常に役立つことがわかりました。次のように、寸法、色、ドローアブル、および文字列を処理するための定義済みメソッドがいくつかあります。
public static String getString(Context context, String stringId) {
int sid = getStringId(context, stringId);
if (sid > 0) {
return context.getResources().getString(sid);
} else {
return "";
}
}
// 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());