我在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>