20
Làm thế nào để thực hiện cuộc gọi điện thoại bằng ý định trong Android?
Tôi đang sử dụng mã sau đây để thực hiện cuộc gọi trong Android nhưng nó mang lại cho tôi ngoại lệ bảo mật, vui lòng trợ giúp. 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); quyền <uses-permission android:name="android.permission.CALL_PHONE" /> ngoại …