I have a user's name and password stored in their preferences.
How do I go about passing it back into the webview in a secure way? I know if I do this it will work, but it just seems bad. There has to be a better way to post the variables.
webview.loadUrl("http://mysite.com?name="+username+"&password="+somepassword);
I've been looking for days and can't find anything, which make me think I'm missing something obvious.