Android在后台检测来电

时间:2015-12-04 07:23:29

标签: android android-permissions phone-call android-broadcastreceiver incoming-call

我在检测来电时遇到问题。我尝试了很多教程,但它没有用。我真的不确定错误在哪里。

我已添加权限READ_PHONE_STATE,但仍在Android设备监视器中看到此警告(从中调用时):

Permission Denial: receiving Intent { act=android.intent.action.PHONE_STATE flg=0x10 (has extras) } to com.development.test.rejectcall/.background.IncomingCall requires android.permission.READ_PRIVILEGED_PHONE_STATE due to sender android (uid 1000)

Permission Denial: receiving Intent { act=android.intent.action.PHONE_STATE flg=0x10 (has extras) } to com.development.test.rejectcall/.background.IncomingCall requires android.permission.READ_PHONE_STATE due to sender android (uid 1000)

的AndroidManifest.xml

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

    <uses-permission android:name="android.permission.READ_PHONE_STATE" />

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <receiver android:name=".background.IncomingCall">
            <intent-filter>
                <action android:name="android.intent.action.PHONE_STATE" />
            </intent-filter>
        </receiver>
    </application>

</manifest>

IncomingCall.java

package com.development.test.rejectcall.background;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
import android.widget.Toast;

public class IncomingCall extends BroadcastReceiver {

    @Override
    public void onReceive(Context context, Intent intent) {
        Toast.makeText(context, "Phone state call hook", Toast.LENGTH_LONG).show();
        Log.d("mujlog", "phoneNumber received");
    }
}

MainActivity.java

package com.development.test.rejectcall;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.widget.Toast;

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        Log.d("mujlog", "Created");
        Toast.makeText(this, "started", Toast.LENGTH_LONG).show();
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }
}

1 个答案:

答案 0 :(得分:0)

不要使用compileSdkVersion,targetSdkVersion,buildToolsVersion 23或更高版本。因为在API级别23中,广播接收器中的PHONE_STATE操作会拒绝权限 使用21或更低版本。下面的配置适用于我

compileSdkVersion 21
buildToolsVersion&#34; 21.1.2&#34;
targetSdkVersion 21