将targetSdkVersion更新为27后,操作ACTION_POWER_DISCONNECTED无法正常工作

时间:2018-06-14 07:10:41

标签: android android-studio android-gradle broadcastreceiver intentfilter

我正在检查电池充电状态,在将targetSdkVersion更改为26和27之前工作正常

<receiver
            android:name=".PowerConnectionReceiver"
            android:enabled="true"
            android:exported="true">
            <intent-filter>
                <action android:name="android.intent.action.ACTION_POWER_DISCONNECTED" />
                <action android:name="android.intent.action.ACTION_POWER_CONNECTED" />
                <action android:name="android.intent.action.ACTION_BATTERY_CHANGED" />
            </intent-filter>
        </receiver>

它在最新的targetSdkVersion 27中无效 会是什么原因?及其解决方案?

注意:它使用充电器类型A但不使用充电器类型C

0 个答案:

没有答案