Guest User

Untitled

a guest
Jan 17th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. public boolean shouldOverrideUrlLoading(WebView myWebView, String url) {
  2. if (url != null && url.startsWith("sms:?")) {
  3. myWebView.getContext().startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(url)));
  4. return true;
  5. } else {
  6. return false;
  7. }
  8. }
  9.  
  10. if (url != null && url.startsWith("sms")) {
Add Comment
Please, Sign In to add comment