我在音量按钮上使用广播接收器来创建呼叫快捷方式。但广播接收器没有响应任何音量按钮按下,也没有任何例外。
这是我的AndroidManifest.xml类
<receiver android:name="com.abc.utilities.CallBroadcastReceiver" >
<intent-filter>
<action android:name="android.media.VOLUME_CHANGED_ACTION" />
</intent-filter>
</receiver>
我的BroadcastReceiver类
@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.");
}
}
答案 0 :(得分:3)
我尝试编写您想要的内容以及它的工作。
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);
}
}
您不需要检查意图操作的值,因为您的BroadcastReceiver刚刚收听了VOLUME_CHANGED_ACTION
。但是,如果您检查了行动的价值,那就android.media.VOLUME_CHANGED_ACTION
。
之后,我在Nexus 6中尝试使用此应用,问题可能来自手机。