Guest User

Untitled

a guest
Dec 18th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. mWebView.setWebViewClient(new WebViewClient()
  2. {
  3. @Override
  4. public boolean shouldOverrideUrlLoading(WebView view, String url) {
  5. if(url.contains(url)) {
  6. Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
  7. startActivity(i);
  8. }
  9. return true;
  10. }
  11. });
Add Comment
Please, Sign In to add comment