This code was working with another aspx form, now when I changed the form, it works in blackberry’s webview however the android now boots a external browser, even know before it booted within the application.
webview = (WebView) findViewById(R.id.webView1);
webview.getSettings().setJavaScriptEnabled(true);
webview.setInitialScale (5);
webview.loadUrl(URL);
webview.requestFocus(View.FOCUS_DOWN);
why is it loading outside the browser now?
All you need is to implement
shouldOverrideUrlLoading(). A snippet from my recent project:}
Happy coding!