Android 在后台检测来电

Android detect incoming call on background

我无法检测来电。我尝试了很多教程,但它不起作用。真不知道哪里错了

我已添加权限 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);
    }
}

不要在广播接收器中的API 23 级操作PHONE_STATE 中使用compileSdkVersion、targetSdkVersion、buildToolsVersion 23 或大于that.Because 的权限被拒绝 使用 21 或低于 that.below 配置适合我

compileSdkVersion 21
buildToolsVersion "21.1.2"
targetSdkVersion 21