본문 바로가기
프로그래밍 놀이터/안드로이드, Java

[android] intent 통해 sms 보내기.

by 돼지왕 왕돼지 2012. 11. 6.
반응형



intent 통해 sms 보내기.

Intent intent = new Intent(Intent.ACTION_VIEW);

intent.putExtra("address", "01012345678");

intent.putExtra("sms_body", "This is a test message"); 

intent.setType("vnd.android-dir/mms-sms");

startActivity(intent);


or

Intent intent = new Intent( Intent.ACTION_SENDTO );

intent.putExtra( "sms_body", "This is a test message" ); 

intent.setData( Uri.parse( "smsto:01012345678; 01098765432" ) );

startActivity( intent ); 




도움이 되셨다면 손가락 꾸욱~ ( 로그인 필요 x )



반응형

댓글