int id가 아닌 이름으로 String 또는 Drawable과 같은 리소스에 액세스하고 싶습니다.
어떤 방법을 사용합니까?
int id가 아닌 이름으로 String 또는 Drawable과 같은 리소스에 액세스하고 싶습니다.
어떤 방법을 사용합니까?
답변:
다음과 같습니다.
R.drawable.resourcename
Android.R
Eclipse를 혼동시킬 수 있으므로 네임 스페이스를 가져 오지 않았는지 확인하십시오 (사용중인 경우).
그래도 작동하지 않으면 언제든지 컨텍스트의 getResources
방법을 사용할 수 있습니다 ...
Drawable resImg = this.context.getResources().getDrawable(R.drawable.resource);
어디 this.context
int로서 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());
"this"가 활동 인 경우, 명확히하기 위해 작성되었습니다.
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
Kotlin에서 이름으로 리소스 ID를 찾으려면 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());
}
}