คำถามติดแท็ก android-implicit-intent

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: starting Intent { act=android.intent.action.CALL dat=tel:111-333-222-4 cmp=com.android.phone/.OutgoingCallBroadcaster } …
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.