我已经在清单中注册了一个接收器。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.receiverdemo"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.receiverdemo.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver
android:name="Receiver"
android:exported="false" >
<intent-filter>
<action android:name="com.example.receiverdemo.RECEIVER" />
</intent-filter>
</receiver>
</application>
</manifest>
我从 adb shell 发送广播
adb shell am broadcast -a com.example.receiverdemo.RECEIVER
上面的命令应该被正确执行,之后应该调用的onReceive()
方法。Receiver
这是预期的行为。
emulator
我可以在运行 android 4.2和运行 android 4.2上看到这种行为,galaxy nexus
但这在我HTC one X
和HTC-desire-x
运行 android 4.1.1上都没有按预期工作onReceive()
,即使am broadcast
命令正确执行,也没有调用该方法。
我可以看到输出为
shell@android:/ $ am broadcast -a com.example.receiverdemo.RECEIVER
am broadcast -a com.example.receiverdemo.RECEIVER
Broadcasting: Intent { act=com.example.receiverdemo.RECEIVER }
Broadcast completed: result=0
Receiver
类如下,
public class Receiver extends BroadcastReceiver {
public static final String ACTION_RECEIVER = "com.example.receiverdemo.RECEIVER";
@Override
public void onReceive(Context arg0, Intent arg1) {
Log.i("DEMO", "Working");
}
}
我不明白这里出了什么问题。是否与 API 版本或 ROM 或某些开发人员设置或其他有关?