AndroidのXMLPullParserがどのXMLをどのようにナビゲートするかを理解し、コーディングしています。以下は、子ども1の属性情報を取得することだけに興味があるXMLの例です。Android XMLPullParserを使用してXMLをナビゲート/解析する
Android XMLPullParserに、特定のタグ(子1)内の情報のみを気にする方法を教えてください。同様のデータを含んでいますか?
例:
<root>
<child 1>
<child 1.1>
<attribute 1></attribute 1>
<attribute 2></attribute 2>
</child 1.1>
<child 1.2>
<attribute 1></attribute 1>
<attribute 2></attribute 2>
</child 1.2>
</child 1>
<child 2>
<child 2.1>
<attribute 1></attribute 1>
<attribute 2></attribute 2>
</child 2.1>
<child 2.2>
<attribute 1></attribute 1>
<attribute 2></attribute 2>
</child 2.2>
</child 2>
</root>
ありがとう!未遂
チュートリアル:
- とhttp:// developer.android.com/training/basics/network-ops/xml.html
- ます。http:// theopentutorials.com/tutorials/android/xml/android-simple-xmlpullparser-tutorial/
プル構文解析はコード化が難しいとされていますが、もちろんxmlの構造は複雑です...他のapisにもオープンですか? –
はい、他の人には開いています。私の最終目標は、解析されたデータをフラグメントに含まれるリストビューに提示することです。 – DC5Gator
出力をどのように見せたいかを明確にすることはできますか? –