自定义广播接收器未在Lollipop中调用

时间:2016-10-11 17:34:19

标签: android broadcastreceiver

我在Manifest中声明了一个带有intent过滤器的接收器。它在Jellybean中被正确调用,但没有在Lollipop中被调用。 Lollipop接收器的注册方式是不同的,是否需要以编程方式注册?感谢您的帮助。

    <receiver
        android:name=".IPCallConnReceiver"
        android:enabled="true"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.lib.ip.CALL" />
        </intent-filter>
    </receiver>

0 个答案:

没有答案