假设我在android资源中存储了一个二维数组,如下所示。如何在像Arraylist这样的java集合中获取它们?
<resources>
<string-array name="countries_array">
<item>
<name>Bahrain</name>
<code>12345</code>
</item>
<item>
<name>Bangladesh</name>
<code>54545</code>
</item>
<item>
<name>India</name>
<code>54455</code>
</item>
</string-array>
</resources>
例如,对于1维数组,我们可以使用
来完成getResources().getStringArray(R.array.countries_array);
当countries_array像
时<resources>
<string-array name="countries_array">
<item>Bahrain</item>
<item>Bangladesh</item>
<item>India</item>
</string-array>
</resources>
答案 0 :(得分:37)
资源文件的<string-array>
元素只能用于单维数组。换句话说,<item>
和</item>
之间的所有内容都被视为单个字符串。
如果您希望以您描述的方式存储数据(实际上是伪XML),您需要使用String[]
将项目作为单个getStringArray(...)
进行存储并解析<name>
和你自己的<codes>
元素。
就我个人而言,我可能会采用不受限制的格式,例如...
<item>Bahrain,12345</item>
...然后只使用split(...)
。
或者,将每个<item>
定义为JSONObject,例如......
<item>{"name":"Bahrain","code":"12345"}</item>
答案 1 :(得分:5)
I wrote about another取代多值条目,而不是将复杂对象存储为数组,然后使用增量整数将名称后缀。如果需要,循环遍历它们并从那里创建强类型对象列表。
<resources>
<array name="categories_0">
<item>1</item>
<item>Food</item>
</array>
<array name="categories_1">
<item>2</item>
<item>Health</item>
</array>
<array name="categories_2">
<item>3</item>
<item>Garden</item>
</array>
<resources>
然后你可以创建一个静态方法来检索它们:
public class ResourceHelper {
public static List<TypedArray> getMultiTypedArray(Context context, String key) {
List<TypedArray> array = new ArrayList<>();
try {
Class<R.array> res = R.array.class;
Field field;
int counter = 0;
do {
field = res.getField(key + "_" + counter);
array.add(context.getResources().obtainTypedArray(field.getInt(null)));
counter++;
} while (field != null);
} catch (Exception e) {
e.printStackTrace();
} finally {
return array;
}
}
}
现在可以这样消费:
for (TypedArray item : ResourceHelper.getMultiTypedArray(this, "categories")) {
Category category = new Category();
category.ID = item.getInt(0, 0);
category.title = item.getString(1);
mCategories.add(category);
}