안드로이드 인텐트로 전화 걸기 (How to make a call by Intent?)
2014. 1. 26. 04:42ㆍPrograming/Android / Java
// In Manifest----------------------------------------------------------- // In Source Intent sendIntent = new Intent(Intent.ACTION_CALL); sendIntent.setData(Uri.parse("tel:" + "01012345678")); startActivity(sendIntent);
'Programing > Android / Java' 카테고리의 다른 글
Android Market Bank Code (마켓 등록 시 은행 코드) (0) | 2014.01.28 |
---|---|
안드로이드 마켓으로 이동 (Intent and StartActivity to go to Market) (0) | 2014.01.26 |
안드로이드 인텐트로 SMS 보내기 (How to send SMS by using the Intent?) (0) | 2014.01.26 |
안드로이드 3초 후 자동 화면전환 (How to change activity automatically?) (0) | 2014.01.26 |
안드로이드 타이틀바 없애기 (How to remove the title bar) (0) | 2014.01.26 |