当用户按下服务或广播接收器中的各种按钮时,如何获得按键事件?我特别想知道用户何时按下音量按钮,以便我可以在后台触发其他内容,例如录音机。

不幸的是,我的互联网搜索没有任何结果。

最佳答案

类似于以下内容的东西应该起作用:

 根据官方文档:

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"...>
    //code, like activities, etc

    <receiver android:name="com.example.test.VolumeBroadcast" >
        <intent-filter>
           <action android:name="android.intent.action.MEDIA_BUTTON" />
        </intent-filter>
</application>


接收器示例:

  public class VolumeBroadcast extends BroadcastReceiver{

      public void onReceive(Context context, Intent intent) {
           //check the intent something like:
           if (Intent.ACTION_MEDIA_BUTTON.equals(intent.getAction())) {
              KeyEvent event = (KeyEvent)intent.getParcelableExtra(Intent.EXTRA_KEY_EVENT);
              if (KeyEvent.KEYCODE_MEDIA_PLAY == event.getKeyCode()) {
                 // Handle key press.
              }
           }
      }
  }


您的注册方式如下:


 AudioManager am = mContext.getSystemService(Context.AUDIO_SERVICE);
// Start listening for button presses
am.registerMediaButtonEventReceiver(RemoteControlReceiver);
// Stop listening for button presses
am.unregisterMediaButtonEventReceiver(RemoteControlReceiver);


下方页面:
 Audio Playback

关于android - 如何在服务和广播接收器中检测关键事件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38612435/

10-11 22:36