应用程序关闭时,broadcastreceiver无法正常工作

时间:2017-02-24 07:56:53

标签: android

我在Manifest文件中声明了Broadcast Receiver。它仅适用于在后台打开应用程序。

的AndroidManifest.xml

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">

    <receiver android:name=".BlockCallReceiver" android:exported="true">
        <intent-filter>
            <action android:name="android.intent.action.PHONE_STATE" />
            <action android:name="android.intent.action.USER_PRESENT" />
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </receiver>

</application>

0 个答案:

没有答案