I have a WebView that I want to point to a certain URL. For some reason the following code just opens the regular Android browser. I want it to load in my webview.
webView = (WebView) this.findViewById(R.id.webView);
webView.getSettings().setJavaScriptEnabled(true);
webView.loadUrl("http://www.google.com");
I followed this example and it worked:
http://marakana.com/forums/android/examples/58.html