hey guys what I am trying to do is have two edit boxes for a user to sign into a website. I do not want to use a webview. my question is how can i get the inputted values from the editbox and put it in as their sign in info (i.e username and password) and return the result if it was successful or not?
Thanks again!
I actually just wrote an app that did this exact thing. My first question is what technology are you using on the web side? For me it was asp.NET. You can use either a GET or POST method to send your user credentials and get your result. I suggest using POST since the information is sensitive and POST is better for that type of information. Here is the code.
ASPX Code:
ANDROID CODE:
login.xml: