Android > 전화걸기

Redjini WiKi
< java‎ | android
Acepro (토론 | 기여)님의 2017년 3월 2일 (목) 07:39 판
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)


전화 바로 걸기
Intent intent= new Intent(Intent.ACTION_CALL);
intent.setData( Uri.parse("tel:"+callee)); 
startActivity(intent);
전화 걸기 창 표시
Intent intent= new Intent(Intent.ACTION_DIAL);
intent.setData( Uri.parse("tel:"+callee)); 
startActivity(intent);