[Android] 전화걸기 연동

전화 바로 걸기

    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);

"프로그래밍 / Android" 분류의 다른 글

[Android] Dialog 속성 (0)2015/08/30
2014/08/14 20:28 2014/08/14 20:28
태그 : ,
글 걸기 주소 : 이 글에는 트랙백을 보낼 수 없습니다