Sorry for not being more specific
Here is the code I use to launch the webview, this is an activity. This does display the proper page, but when the user clicks the link on that page, no cookie is sent to the server. My understanding is that the shouldOverrideURLLoading shuold keep the user in the same view and not create a new one. Is there something else I have to do?
Thanks,
ed
WebView webview = new WebView(this);
webview.setWebViewClient(new WebViewClient() {
@Override
public boolean shouldOverrideUrlLoading(WebView view,
String url) {
view.loadUrl(url);
return true;
}
});
setContentView(webview);
webview.loadUrl(my url here);