到目前为止,我想在 android 4.0 中列出标签的所有值或示例。非常感谢。
NodeList nodes = doc.getElementsByTagName("month");
for (int i = 0; i < nodes.getLength(); i++) {
Element e = (Element) nodes.item(i);
stock_list.add(getValue(e, "month"));
}
Here is my xml