我正在尝试使用字符串数组从XML获取资源,因为它当前处于循环中。
有人可以告诉我如何做到这一点吗?
资源名称与数组字符串名称相同,只是为了清楚。
到目前为止,我已经尝试过:
mMainEngine.mContext.getString(R.string.class.getField(Modification.ModicationNames[Current]).getInt(null)),
答案 0 :(得分:2)
我没有误解你
int id = getResources().getIdentifier("name_of_resource","string", getPackageName());
是你需要的
答案 1 :(得分:0)
仅举例来说我正在访问Drawable。您可以从名称获取ID,如下所示
Resources res = context.getResources();
String strpckg = context.getPackageName();
int id = res.getIdentifier(iconName, "drawable", strpckg);
您还可以访问Drawable:
Drawable drawable = res.getDrawable(id);