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

[android] 전화걸기 & sms 보내기 intent example

by 돼지왕 왕돼지 2012. 10. 30.
반응형



전화걸기 & sms 보내기 intent example

전화걸기 Intent example

Intent intent = new Intent( Intent.ACTION_CALL );

intent.setData( Uri.parse( "tel:01012345678" ) );

startActivity( intent );



sms 보내기 intent example

Intent intent = new Intent( Intent.ACTION_VIEW );

intent.setData( Uri.parse( "sms:01012345678" ) );

startActivity(intent);




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



반응형

댓글