我在清单中注册了一个接收器。
<?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
方法。
这是预期的行为。
我可以在运行android 4.2的emulator
和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或某些开发人员设置或其他相关的东西吗?
答案 0 :(得分:0)
我根据我的设备和来自adb shell的root权限执行了该命令,并按预期工作。
答案 1 :(得分:0)
此外,您可以尝试为此接收者发表评论android:permission="com.google.android.c2dm.permission.SEND"
。