• android鼠标滚轮bug


    bug:鼠标滚轮向前向后滚动与系统界面滚动相反

    修改:

    打开 frameworks/base/services/java/com/android/server/KeyInputQueue.java

    修改第789行

    将 di.mRel.mNextData[MotionEvent.SAMPLE_Y] += ev.value

    @Override
    publicboolean onGenericMotionEvent(MotionEventevent){
      if(0!=(event.getSource()&InputDevice.SOURCE_CLASS_POINTER)){
        switch(event.getAction()){
          case
    MotionEvent.ACTION_SCROLL:
            if(event.getAxisValue(MotionEvent.AXIS_VSCROLL)<0.0f)     selectNext()
            else     selectPrev();
            
    return true;
          }
        }
      returnsuper.onGenericMotionEvent(event);
    }
  • 相关阅读:
    二叉排序树
    堆排序
    线索化二叉树
    vue 格式化代码
    线程的理解
    声明式的服务调用 Feign
    使用锁 的理解
    zookeeper 的理解
    AQS 源码解析
    HashMap 的理解与结构
  • 原文地址:https://www.cnblogs.com/lyz459/p/3245799.html
Copyright © 2020-2023  润新知