1

我已经在清单中注册了一个接收器。

<?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 XHTC-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 或某些开发人员设置或其他有关?

4

2 回答 2

0

Also you can try to comment android:permission="com.google.android.c2dm.permission.SEND" for this receiver.

于 2014-03-04T12:42:45.510 回答
0

我植根了我的设备,并从具有 root 权限的 adb shell 执行了该命令,并且它按预期工作。

于 2013-08-17T14:01:18.117 回答