可能重复:
在android中遍历复杂的xml文件
在此我正在使用 DOM 解析器解析一个 xml 文件,该解析器将 dom1 作为解析后的文档。问题是我想在此之后创建 UI,但我无法相同,因为我找不到相同的逻辑,请帮助我。这也给了我错误的getLength() 值。它有什么问题?
xml 在此链接中:
http://nchc.dl.sourceforge.net/project/trialxml/options.xml
//this is function is called when i click my button
public void next123(View view){
Element root=dom1.getDocumentElement();
NodeList nodes=root.getChildNodes();
create_Menu(nodes);
}
public void create_Menu(NodeList nodes){
for(int i=0;i<nodes.getLength();i++){
Node node=nodes.item(i);
if(node instanceof Element){
Element child = (Element)node;
String name=getTextValue(child,"Name");
String typ=child.getAttribute("type");
if(name!=null){
z++;
Log.i(TAG,"Names are:= " +name+ " -> "+typ +" -> "+ z+ " -> "+ i);
NodeList nod=child.getChildNodes();
Log.i(TAG,"Length : "+nod.getLength());
create_Menu(nod);
Log.i(TAG,"end");
}
}
}
}
在此之后我必须创建一个 UI,因为我使用 ListView 和一个 ArrayList 数组来存储我的值。问题是我必须指定一个否。到各个层面,
例如,如果我的数组是 test[],那么
test[0]-> main,
test[1]->1L1,1L2,1L3,
test[2]->2L1,
test[3]->2L2
test[4]->3L1,3L2
请参考xml。