接收长按音量键
Receive long volume-key press
Google-Music-App (在 OnePlus One,Cyanogen OS-版本 12.1 上) 在音量调高时播放下一首歌曲硬件键被长按并在音量减小键长按时播放上一首歌曲。
是否可以在 BroadcastReceiver 中接收这些动作?
还是 OS 只是将这些长按作为 MEDIA_BUTTON 操作来处理? (如果我的两个假设 none 是正确的,Google Play 是如何做到这一点的?)
编辑 1:
似乎是 MEDIA_BUTTON 操作 "MEDIA_NEXT"。但是为什么我的接收器没有收到动作?
String action = intent.getAction();
if(action.equalsIgnoreCase(Intent.ACTION_MEDIA_BUTTON)) {
KeyEvent event = (KeyEvent)intent.getParcelableExtra(Intent.EXTRA_KEY_EVENT);
if (KeyEvent.KEYCODE_MEDIA_PLAY == event.getKeyCode()) {
//my play code
}else if (KeyEvent.KEYCODE_MEDIA_NEXT == event.getKeyCode()) {
//my play next code
}else if (KeyEvent.KEYCODE_MEDIA_PREVIOUS == event.getKeyCode()) {
//my play prev code
}else if (KeyEvent.KEYCODE_MEDIA_PAUSE == event.getKeyCode()) {
//my pause code
}
}
它已在清单中注册:
<receiver android:name=".receiver.AudioPlayerBroadcastReceiver">
<intent-filter>
//other actions (they all work fine)
<action android:name="android.intent.action.MEDIA_BUTTON" />
</intent-filter>
</receiver>
Cyanogen 在长按音量增大时发送 MEDIA_NEXT
事件。 (至少 Cyanogemod 11 在我的 phone 上做了这个)
您应该能够轻松地进行测试。只需收听 MEDIA_NEXT
并通过长按检查是否收到。
编辑 1:
参见 BroadcastReceiver for ACTION_MEDIA_BUTTON not working
(另外:如果您有新问题,请打开一个新问题而不是编辑旧问题)
Google-Music-App (在 OnePlus One,Cyanogen OS-版本 12.1 上) 在音量调高时播放下一首歌曲硬件键被长按并在音量减小键长按时播放上一首歌曲。
是否可以在 BroadcastReceiver 中接收这些动作? 还是 OS 只是将这些长按作为 MEDIA_BUTTON 操作来处理? (如果我的两个假设 none 是正确的,Google Play 是如何做到这一点的?)
编辑 1:
似乎是 MEDIA_BUTTON 操作 "MEDIA_NEXT"。但是为什么我的接收器没有收到动作?
String action = intent.getAction();
if(action.equalsIgnoreCase(Intent.ACTION_MEDIA_BUTTON)) {
KeyEvent event = (KeyEvent)intent.getParcelableExtra(Intent.EXTRA_KEY_EVENT);
if (KeyEvent.KEYCODE_MEDIA_PLAY == event.getKeyCode()) {
//my play code
}else if (KeyEvent.KEYCODE_MEDIA_NEXT == event.getKeyCode()) {
//my play next code
}else if (KeyEvent.KEYCODE_MEDIA_PREVIOUS == event.getKeyCode()) {
//my play prev code
}else if (KeyEvent.KEYCODE_MEDIA_PAUSE == event.getKeyCode()) {
//my pause code
}
}
它已在清单中注册:
<receiver android:name=".receiver.AudioPlayerBroadcastReceiver">
<intent-filter>
//other actions (they all work fine)
<action android:name="android.intent.action.MEDIA_BUTTON" />
</intent-filter>
</receiver>
Cyanogen 在长按音量增大时发送 MEDIA_NEXT
事件。 (至少 Cyanogemod 11 在我的 phone 上做了这个)
您应该能够轻松地进行测试。只需收听 MEDIA_NEXT
并通过长按检查是否收到。
编辑 1: 参见 BroadcastReceiver for ACTION_MEDIA_BUTTON not working
(另外:如果您有新问题,请打开一个新问题而不是编辑旧问题)