I am doing an android application which has to get some data from the server pc (stored in xml file) and display it in my app. Suppose the xml data is: Example.xml
<Data>
<Parameter_1>anitha</Parameter_1>
<Parameter_2>23-04-2000</Parameter_2>
<Parameter_3>12:09:00</Parameter_3>
</Data>
The above xml file is stored in my server pc. Now I want to display the values "anitha", "23-04-2000" and "12:09:00" in my android application using Toast feature. I think Xmlpullparser is the best for parsing values from the xml file in android apps. Can anyone post the sample code to get those values from server to my app??
Thanks in advance!!