안드로이드 인텐트로 SMS 보내기 (How to send SMS by using the Intent?)
2014. 1. 26. 04:36ㆍPrograming/Android / Java
Intent sendIntent = new Intent(Intent.ACTION_VIEW); String mSmsBody = "보낼 문자 내용 (The message you wanna send SMS.)"; sendIntent.putExtra("sms_body", mSmsBody); sendIntent.putExtra("address", "010123445678"); sendIntent.setType("vnd.android-dir/mms-sms"); startActivity(sendIntent);
'Programing > Android / Java' 카테고리의 다른 글
안드로이드 마켓으로 이동 (Intent and StartActivity to go to Market) (0) | 2014.01.26 |
---|---|
안드로이드 인텐트로 전화 걸기 (How to make a call by Intent?) (0) | 2014.01.26 |
안드로이드 3초 후 자동 화면전환 (How to change activity automatically?) (0) | 2014.01.26 |
안드로이드 타이틀바 없애기 (How to remove the title bar) (0) | 2014.01.26 |
인치를 센티미터롤 변환 (inch to cm) (0) | 2014.01.14 |