Advertisement
Guest User

Untitled

a guest
Apr 11th, 2018
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. public class WebClient extends WebViewClient {
  2.  
  3. @SuppressWarnings("deprecation")
  4. @Override
  5. public boolean shouldOverrideUrlLoading(WebView view, String url) {
  6. view.loadUrl(url);
  7. return true;
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement