我想检测蓝牙鼠标滚轮的变化,我知道鼠标滚轮变化的动作代码是什么,但不知道它是向上还是向下。
public boolean onGenericMotion(View v, MotionEvent event) {
if (event.getActionMasked() == MotionEvent.ACTION_SCROLL) {
//how to detect mouse wheel being up or down?
}
return false;
}
非常感谢!