I want to ask, I have a website(HTML and javascript) that allows user to login, maintain thier account. Now I want to create an android application that allows user to login and then pulls thier account details from the website and display on the android app. I have no idea where to start? After user logged in how to pull that user’s account details from website? Any suggestion where to start and what to look for???
Can I simply load the url of website for login? Would the website work fine on android?
The best approach is to create a webservice to return a JSON or XML string with the information you need.
If you need more security you can create a mechanism that generates expirable hashes that can be used for a specified period of time.