[java] 알려진 리소스 이름으로 리소스 ID를 얻는 방법은 무엇입니까?

int id가 아닌 이름으로 String 또는 Drawable과 같은 리소스에 액세스하고 싶습니다.

어떤 방법을 사용합니까?



답변

다음과 같습니다.

R.drawable.resourcename

Android.REclipse를 혼동시킬 수 있으므로 네임 스페이스를 가져 오지 않았는지 확인하십시오 (사용중인 경우).

그래도 작동하지 않으면 언제든지 컨텍스트의 getResources방법을 사용할 수 있습니다 …

Drawable resImg = this.context.getResources().getDrawable(R.drawable.resource);

어디 this.contextint로서 intialised되고 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());

“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());