찾다

 >  Q&A  >  본문

android 手柄 左摇杆 右摇杆 怎么选择 MotionEvent.AXIS?

监听手柄 右摇杆 和 左摇杆, R2和L2时,在View 重写

public boolean onGenericMotionEvent(MotionEvent event)

左摇杆用

event.getAxisValue(MotionEvent.AXIS_X),event.getAxisValue(MotionEvent.AXIS_Y)

右摇杆用

event.getAxisValue(MotionEvent.AXIS_Z),event.getAxisValue(MotionEvent.AXIS_RZ)

但是监听的时候, 我并不知道是 左摇杆还是右摇杆, 怎么判断event.getAxisValue(MotionEvent.xxxx)这个参数用那个呢???


高洛峰高洛峰2925일 전919

모든 응답(1)나는 대답할 것이다

  • 三叔

    三叔2016-11-15 16:22:48

    你可以将两个监听都写了啊,这样不管是左摇杆还是右摇杆都可以监听到。另外你可以试试让用户垂直按下摇杆,看看获取到的是L3还是R3就知道是左摇杆还是右摇杆了。

    회신하다
    0
  • 취소회신하다