1

我正在尝试使用字符串数组从 XML 获取资源,因为它当前处于循环中。

谁能建议我如何做到这一点?

为了清楚起见,资源名称与数组字符串名称相同。

到目前为止,我已经尝试过:

mMainEngine.mContext.getString(R.string.class.getField(Modification.ModicationNames[Current]).getInt(null)),
4

2 回答 2

2

我没有误会你

int id = getResources().getIdentifier("name_of_resource","string", getPackageName());

是你需要的

于 2013-05-24T10:36:22.390 回答
0

例如,我正在访问 Drawable。您可以按如下方式从名称中获取 id

Resources res = context.getResources();
String strpckg = context.getPackageName();

int id = res.getIdentifier(iconName, "drawable", strpckg);

进一步你可以访问 Drawable 为:

Drawable drawable = res.getDrawable(id);
于 2013-05-24T10:37:11.580 回答