Showing posts with label intent. Show all posts
Showing posts with label intent. Show all posts
Prevent Launch Browser When Calling loadurl on Webview
WebView myWebView = (WebView) findViewById(R.id.webview);
myWebView.setWebViewClient(new MyWebViewClient());
myWebView.loadUrl("http://www.example.com");
private class HelloWebViewClient extends WebViewClient {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
view.loadUrl(url);
return true;
}
}
Subscribe to:
Posts (Atom)