반응형
전화보내기
-
intent 를 활용한 전화,문자 보내기창 띄우기ANDROID 2017. 1. 12. 15:22
http://theeye.pe.kr/archives/1242 ex)) @JavascriptInterface public void SendSMSPopup(final String Msg) { Intent it = new Intent(Intent.ACTION_VIEW); //it.putExtra("address", "전화번호"); it.putExtra("sms_body", Msg); it.setType("vnd.android-dir/mms-sms"); startActivity(it); } @JavascriptInterface public void SendMAILPopup(final String Msg) { Intent it = new Intent(Intent.ACTION_SEND); it.putExtra(In..