I'm consuming this xml tag of a api and storing your content in a String
p>
Its structure looks like this:
<opml version="1">
<head>
<title>Título</title>
<status>200</status>
</head>
<body>
<outline type="link" text="op_1" URL="http://dados.com/op.ashx?c=1" key="1"/>
<outline type="link" text="op_2" URL="http://dados.com/op.ashx?c=2" key="2"/>
<outline type="link" text="op_3" URL="http://dados.com/op.ashx?c=3" key="3"/>
<outline type="link" text="op_4" URL="http://dados.com/op.ashx?c=4" key="4"/>
<outline type="link" text="op_5" URL="http://dados.com/op.ashx?c=5" key="5"/>
<outline type="link" text="op_6" URL="http://dados.com/op.ashx?c=6" key="6"/>
<outline type="link" text="op_7" URL="http://dados.com/op.ashx?c=7" key="7"/>
</body>
</opml>
How can I do to read your type, text and URL of each outline?