I am new to Android . I have created a web service in Visual Studio 2008. This is my web service code [http://pastebin.com/QHqL6bNx] . I have also written an Android code to call the web service from my emulator..Here is the Android code [http://pastebin.com/rDhkRTsQ] . My problem is that I want to display the data that I get from my web service in a ListView with a checkbox at the side of it . How to do that ?
Can anyone help me develop the code for it ? What changes should I do in my present code?
Thanks
You need to parse the response of the server. I recommend to encode the output of your web service to be in
JSONorXMLformat, because its quick and easy to parse that kind of response.