1. 程式人生 > >Android app開機廣播開啟app來電廣播

Android app開機廣播開啟app來電廣播

來電廣播檢測,是否為本公司員工,是本公司員工,提示為本公司誰誰誰,哪個部門。 為了開機不啟動app 也可以檢測來電廣播:

1、在靜態註冊廣播的時候 指定exported = true

 <!-- 註冊監聽手機狀態 -->
        <receiver
            android:name=".receiver.PhoneStateReceiver"
            android:exported="true">
            <intent-filter android:priority="1000">
                <action
android:name="android.intent.action.PHONE_STATE" />
</intent-filter> </receiver>

2.開機註冊的廣播

  <receiver android:name=".receiver.ContentReceiver">
            <intent-filter android:priority="1000">
                <action android:name="android.intent.action.BOOT_COMPLETED"
/>
<category android:name="android.intent.category.HOME" /> </intent-filter> </receiver>

3,開機廣播開啟APP的手機狀態廣播


        Intent intent1 = new Intent();
        intent1.setAction("android.intent.action.PHONE_STATE");
        intent1.addFlags(Intent.FLAG
_INCLUDE_STOPPED_PACKAGES); context.sendBroadcast(intent1);

intent1.setAction(“android.intent.action.PHONE_STATE”); 這個是 2 中的

intent1.addFlags(Intent.FLAG_INCLUDE_STOPPED_PACKAGES);表示“Intent.FLAG_INCLUDE_STOPPED_PACKAGES”包含未啟動的App