次の Xml を解析する方法を教えてください。HttpGet メソッドのレスポンスとして以下の xml を取得します。このxmlを文字列形式で保存できます。
<?xml version="1.0" encoding="UTF-8"?>
<opml version="1">
<head>
<status>200</status>
</head>
<body>
<outline type="text" text="General" guide_id="f1" is_default="true"/>
<outline type="text" text="Rock Stations" guide_id="f2"/>
<outline type="text" text="Rock Stations" guide_id="f3"/>
<outline type="text" text="Rock" guide_id="f4"/>
<outline type="text" text="Awdhesh" guide_id="f5"/>
</body>
</opml>
の属性を解析したいoutline
。また、リストビューでの値も表示したいと思いますtext
。サンプルコードを教えてください。
前もって感謝します ...!!!