«android-phone-call» 태그된 질문

20
Android에서 의도를 사용하여 전화를 거는 방법은 무엇입니까?
Android에서 전화를 걸려면 다음 코드를 사용하고 있지만 보안 예외를 알려주십시오. posted_by = "111-333-222-4"; String uri = "tel:" + posted_by.trim() ; Intent intent = new Intent(Intent.ACTION_CALL); intent.setData(Uri.parse(uri)); startActivity(intent); 권한 <uses-permission android:name="android.permission.CALL_PHONE" /> 예외 11-25 14:47:01.661: ERROR/AndroidRuntime(302): Uncaught handler: thread main exiting due to uncaught exception 11-25 14:47:01.681: ERROR/AndroidRuntime(302): java.lang.SecurityException: Permission Denial: …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.