我正在尝试编写一个简单的应用来捕获ACTION_NEW_OUTGOING_CALL
意图并编写一些调试信息。
这是我的清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.android.apis"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<receiver android:name="DialerReceiver" android:exported="false" android:enabled="true">
<intent-filter>
<action android:name="android.intent.action.NEW_OUTGOING_CALL" />
</intent-filter>
</receiver>
</application>
<uses-permission android:name="android.permission.PROCESS_OUTGOING_CALLS"></uses-permission>
</manifest>
以下是DialerReceiver的代码:
package com.example.android.apis;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
public class DialerReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context arg0, Intent arg1) {
// TODO Auto-generated method stub
debugOut("arg0: " + arg0.toString());
debugOut("arg1: " + arg1.toString());
debugOut("isOrderedBroadcast = " + isOrderedBroadcast());
}
private static void debugOut(String str) {
Log.i("DialerReceiver", str);
}
}
由于我不明白的原因,当我安装并发起拨出电话时,我收到以下错误:
WARN/ActivityManager(59): Permission Denial:
broadcasting Intent { act=android.intent.action.NEW_OUTGOING_CALL (has extras) }
from com.android.phone (pid=123, uid=1001) requires null
due to receiver com.example.android.apis/com.example.android.apis.DialerReceiver
是什么给出的?似乎PROCESS_OUTGOING_CALLS应该足够了。
FWIW,如果我更改为没有权限的通知(例如TIMEZONE_CHANGED),这就像魅力一样。
提前致谢。
答案 0 :(得分:6)
回答我自己的问题。
在审核我的清单后,似乎android:exported="false"
不正确,因为Android本身需要调用DialerReceiver
。
当我将其更改为android:export="true"
时,一切正常。
FWIW,我是针对模拟器(API版本8和版本10设备)执行此操作的。
答案 1 :(得分:0)
我也在拦截拨打电话以采取行动。我也只有添加的权限,PROCESS_OUTGOING_FILES,但我注意到在我的DialerReceiver声明中我设置了一个优先级:
<receiver
android:name="DialerReceiver"
android:enabled="true">
<intent-filter android:priority="2147483647">
<action android:name="android.intent.action.NEW_OUTGOING_CALL"/>
</intent-filter>
</receiver>
这个设置对我来说很好。如果需要,我可以从DialerReceiver类发布一些代码。您是在针对模拟器还是手机进行测试?我只测试过一部真正的手机。我没有使用模拟器。 希望这会有所帮助。