StringやDrawableなどのリソースに、int IDではなく名前でアクセスしたい。
これにはどの方法を使用しますか?
StringやDrawableなどのリソースに、int IDではなく名前でアクセスしたい。
これにはどの方法を使用しますか?
回答:
それは次のようなものになります:
R.drawable.resourcename
Android.R
Eclipseを混乱させる可能性があるため、名前空間をインポートしていないことを確認してください(使用している場合)。
それがうまくいかない場合は、いつでもコンテキストのgetResources
メソッドを使用できます...
Drawable resImg = this.context.getResources().getDrawable(R.drawable.resource);
どこthis.context
としてintialisedされActivity
、Service
または任意の他のContext
サブクラスです。
更新:
必要な名前の場合、Resources
クラス(によって返されるgetResources()
)にはgetResourceName(int)
メソッドとgetResourceTypeName(int)
?
アップデート2:
Resources
クラスは、このメソッドがあります:
public int getIdentifier (String name, String defType, String defPackage)
指定されたリソース名、タイプ、パッケージの整数を返します。
R.drawable.resourcename
ある整数。
私が正しく理解していれば、これはあなたが欲しいものです
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)
int resourceID =
this.getResources().getIdentifier("resource name", "resource type as mentioned in R.java",this.getPackageName());
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を取得する簡単な方法。ここで、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);
私のメソッドを使用してリソース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;
}
// 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());
私が見つけたこのクラスは、リソースを処理するのに非常に役立ちます。これには、次のように、寸法、色、ドローアブル、文字列を処理するためのいくつかの定義済みメソッドがあります。
public static String getString(Context context, String stringId) {
int sid = getStringId(context, stringId);
if (sid > 0) {
return context.getResources().getString(sid);
} else {
return "";
}
}
@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());
}
}
Kotlinでは、以下がうまく機能します。
val id = resources.getIdentifier("your_resource_name", "drawable", context?.getPackageName())
リソースがミップマップフォルダーに配置されている場合、「描画可能」の代わりにパラメーター「ミップマップ」を使用できます。