人们只有广播接收器类,并且他们有它在清单中。但是您不需要某种注册过程吗?
<receiver>
清单中的元素具有子<intent-filter>
元素,记录了Intent
它希望接收的结构:
<?xml version="1.0" encoding="utf-8"?>
<manifest android:versionCode="1"
android:versionName="1.0"
package="com.commonsware.android.sysevents.boot"
xmlns:android="http://schemas.android.com/apk/res/android">
<uses-sdk android:minSdkVersion="3"
android:targetSdkVersion="6" />
<supports-screens android:largeScreens="false"
android:normalScreens="true"
android:smallScreens="false" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<application android:icon="@drawable/cw"
android:label="@string/app_name">
<receiver android:name=".OnBootReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
</application>
</manifest>
在这里,我们注册了一个BroadcastReceiver
名为OnBootReceiver
的 来接收BOOT_COMPLETED
广播。
系统如何知道有一个 APP x 有一个广播接收器 y 监听启动事件,除非通过注册明确告知
Android“通过注册明确告知”。碰巧“注册”是通过清单完成的,而不是通过应用程序中的 Java 代码完成的。