반응형
Intent intent = new Intent(Intent.ACTION_DIAL, Uri.parse(url));
startActivity(intent);
-ACTION_DIAL은 전화걸기 앱에 전화번호만 표시해준다.
Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse(url));
startActivity(intent);
-ACTION_CALL은 전화를 바로 걸어준다.
(대신에 uses-permission에서 android.permission.CALL_PHONE 권한을 받아야 한다.)
1 | <uses-permission android:name = "android.permission.CALL_PHONE"/> | cs |
이렇게.
반응형
'Programming > Android' 카테고리의 다른 글
싱글톤 getInstance() null 반환할 때 (0) | 2018.09.27 |
---|