ฉันต้องการเข้าถึงทรัพยากรเช่น 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)
เมธอดและ a 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());
ที่ "นี่" เป็นกิจกรรมเขียนเพียงเพื่อชี้แจง
ในกรณีที่คุณต้องการ String ใน strings.xml หรือตัวระบุขององค์ประกอบ UI ให้แทนที่ "drawable"
int resourceId = this.getResources().getIdentifier("nameOfResource", "id", this.getPackageName());
ฉันเตือนคุณว่าวิธีการรับตัวระบุนี้ช้าจริง ๆ ใช้เฉพาะเมื่อจำเป็นเท่านั้น
เชื่อมโยงไปยังเอกสารอย่างเป็นทางการ: Resources.getIdentifier (ชื่อ String, 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
วิธีการ:
val drawableResId = context.resIdByName("ic_edit_black_24dp", "drawable")
val stringResId = context.resIdByName("title_home", "string")
.
.
.
วิธีง่ายๆในการรับ ID ทรัพยากรจากสตริง นี่ ResourceName เป็นชื่อของ ImageView ทรัพยากรในโฟลเดอร์ drawable ซึ่งจะรวมอยู่ในไฟล์ XML เช่นกัน
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);
ฉันขอแนะนำให้คุณใช้วิธีการรับรหัสทรัพยากร มันมีประสิทธิภาพมากกว่าการใช้วิธี 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());
ฉันพบว่าคลาสนี้มีประโยชน์มากในการจัดการกับทรัพยากร มันมีวิธีการบางอย่างที่กำหนดไว้เพื่อจัดการกับ dimens, สี, drawable และสตริงเช่นนี้
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())
หากทรัพยากรอยู่ในโฟลเดอร์ mipmap คุณสามารถใช้พารามิเตอร์ "mipmap" แทน "drawable"