Possible Duplicate:
Parse local XML file in Android
hi. I want to know how to load and how to parse this XML file from res/xml, and how to rewrite the values
<?xml version="1.0" encoding="UTF-8"?>
<Rocket>
<body>baby</body>
<launcher>basic</launcher>
<point>0</point>
<money>0</money>
<highest>0</highest>
<levelReached>1</levelReached>
</Rocket>
I've never playing with XML before so I feel so blind about this. I already done searching and all I found is about reading XML files from the internet. I didn't find any tutorial of how to parse xml for game use.
and for the additional question,I don't really understand the terms in xml. what is the meaning of serialization? what is DOM? SAXParser? PullParser?