전화 바로 걸기
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 |