I am new to Android development.
My application needs to work this way:
- At startup it will login to TCP Server
- Based upon login it will communicate as a
httpclient
through web services to a web server.
The above two tasks have been successfully implemented in individual projects with the help of AsyncTask. I want to implement both tasks in one project.
So in "Main activity" I have username/password fields then "Next" button to launch web services interface through an Intent. But it cannot launch the web service interface through the Intent. How could I implement this?