我正在使用广播接收器上的音量按钮创建一个呼叫的快捷方式按。但广播接收器没有响应任何音量按钮按下,也没有得到任何例外。
这是我的androidmanifest.xml类

<receiver android:name="com.abc.utilities.CallBroadcastReceiver" >
        <intent-filter>
            <action android:name="android.media.VOLUME_CHANGED_ACTION" />
        </intent-filter>
</receiver>

我的广播接收器类
@Override
public void onReceive(Context context, Intent intent) {
    // TODO Auto-generated method stub
    if(intent.getAction().equals("android.media.VOLUME_CHANGED_ACTION")){
        Lod.d("BroadCast", "Volume button pressed.");
    }
}

最佳答案

我试着编码你想要什么,这是工作。
1)我在清单中这样定义了我的Broacastreceiver:

...
<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name=".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="com.example.test.CallBroadcastReceiver" >
        <intent-filter>
            <action android:name="android.media.VOLUME_CHANGED_ACTION" />
        </intent-filter>
    </receiver>
</application>
...

2)我创建了CallBroadcastReceiver
package com.example.test;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.util.Log;

public class CallBroadcastReceiver extends BroadcastReceiver {

    @Override
    public void onReceive(Context context, Intent intent) {
        int volume = (Integer)intent.getExtras().get("android.media.EXTRA_VOLUME_STREAM_VALUE");
        Log.i("Tag", "Action : "+ intent.getAction() + " / volume : "+volume);
    }

}

您不需要检查意图动作的值,因为您的广播接收器刚刚收听了VOLUME_CHANGED_ACTION。但是如果你检查了你的动作值,它是android.media.VOLUME_CHANGED_ACTION
之后,我在我的Nexus6中尝试了这个应用程序,可能问题来自手机。

10-08 17:35