그러냐

webview에서 a href=sms: 보내기 본문

android

webview에서 a href=sms: 보내기

관절분리 2016. 1. 28. 11:11
반응형

public boolean shouldOverrideUrlLoading(WebView view, String url){
    if(("sms").equals(url.substring(0,3))){
    Intent i = new Intent(Intent.ACTION_SENDTO, Uri.parse(url));
    Log.e("유알엘", url);
    startActivity(i);
  }    
    else{
    view.loadUrl(url);
    }    
    return true;
    }
반응형