无法获取来电事件

Can't get incoming call event

我想实现在后台和前台获取来电事件。所以我为此目的创建了 BroadcastReceiver,但是在我 got/getting/finished 来电后 onReceive() 方法没有被触发。 我尝试了很多教程,但没有任何帮助:(

请帮忙。

清单

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="yakiv.bondar.dev.incomeoutcomecalltest">

<uses-permission android:name="android.permission.PROCESS_OUTGOING_CALLS" />
<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=".IncomingCall"
        android:enabled="true">
        <intent-filter>
            <action android:name="android.intent.action.PHONE_STATE" />
        </intent-filter>
    </receiver>
</application>

广播接收器

public class IncomingCall extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
    Log.d("tag", "AAAAAAAAAAAAAAAAAAAAAA");
    MyPhoneStateListener phoneListener=new MyPhoneStateListener();
    TelephonyManager telephony = (TelephonyManager)
            context.getSystemService(Context.TELEPHONY_SERVICE);
    telephony.listen(phoneListener, PhoneStateListener.LISTEN_CALL_STATE);
}

public class MyPhoneStateListener extends PhoneStateListener {
    public void onCallStateChanged(int state,String incomingNumber){
        switch(state){
            case TelephonyManager.CALL_STATE_IDLE:
                Log.d("tag", "IDLE");
                break;
            case TelephonyManager.CALL_STATE_OFFHOOK:
                Log.d("tag", "OFFHOOK");
                break;
            case TelephonyManager.CALL_STATE_RINGING:
                Log.d("tag", "RINGING");
                break;
        }
    }
}
}

主要Activity

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }
}

在主要活动中:

    IncomingCall mBroadcastReceiver = new IncomingCall();

在恢复中:

    IntentFilter filter = new IntentFilter();
    this.registerReceiver(mBroadcastReceiver , filter);

在暂停中:

    this.unregisterReceiver(mBroadcastReceiver );

您在 Activity 中未拨打 registerReciever(intent,intentFilter)。在 onResume() 中注册您的 activity 并在您的 onPause() 方法中调用 unregisterReciever(intent)

注意:

还要检查您是否在清单中提供了适当的权限,并且还要注意,即使您已经声明了所需的权限,您也必须在 Android 6.0[= 中的运行时处理某些权限。 23=] 及以上。检查 here 在运行时处理 Marshmallow 及更高版本的权限。

1) 确保您的应用有权 READ_PHONE_STATE

2) 你不需要 registerReceiver(BroadcastReceiver, IntentFilter) 因为你在你的 Manifest

3)确保已为您的应用打开通知(检查设置-->应用程序管理器-->你的应用-->通知)

4) 我会尝试在 switch 语句

中不使用 "break" 进行测试

5) 尝试使用 Toast 而不是 Log。 Toast.makeText(上下文, 字符串, Toast.LENGTH_SHORT).show();