gpt4 book ai didi

android.permission.PHONE_CALL 添加到 list 中但仍然出现权限错误

转载 作者:行者123 更新时间:2023-11-29 15:57:04 25 4
gpt4 key购买 nike

我正在尝试使用 ACTION_CALL Intent 来调用 USSD 代码。我已将 android.permission.PHONE_CALL 添加到 list 文件,但它不起作用并出现权限错误异常。 PS:如您所见,也有 GPS 和 INTERNET 的权限,并且它们工作正常。以下是代码:

public void onClick(View v) {
String encodedHash = Uri.encode("#");
String number = "*140*1";
Intent intent = new Intent(Intent.ACTION_CALL);
intent.setPackage("com.android.phone");
intent.setData(Uri.parse("tel:" + number + encodedHash));
try{
startActivity(intent);
} catch(Exception ex){
Toast.makeText(getApplication(), ex.toString(), Toast.LENGTH_LONG).show();
}
}

list

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.test"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="17"
android:targetSdkVersion="21" />

<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.PHONE_CALL" />

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity .......

最佳答案

我想你拼错了文本,更改为以下内容:android.permission.CALL_PHONE

关于android.permission.PHONE_CALL 添加到 list 中但仍然出现权限错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27479656/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com