@Override
public boolean onGenericMotionEvent(MotionEvent event) {
//The input source is a pointing device associated with a display.
//输入源为可显示的指针设备,如:mouse pointing device(鼠标指针),stylus pointing device(尖笔设备)
if (0 != (event.getSource() & InputDevice.SOURCE_CLASS_POINTER)) {
switch (event.getAction()) {
// process the scroll wheel movement...处理滚轮事件
case MotionEvent.ACTION_SCROLL:
//获得垂直坐标上的滚动方向,也就是滚轮向下滚
if (event.getAxisValue(MotionEvent.AXIS_VSCROLL) < 0.0f) {
LogUtils.d("fortest::onGenericMotionEvent down");
}
//获得垂直坐标上的滚动方向,也就是滚轮向上滚
else {
LogUtils.i("fortest::onGenericMotionEvent up");
}
return true;
}
}
return super.onGenericMotionEvent(event);
}
android鼠标滚轮事件监听方法
王的备忘录2023-10-26 13:03
相关推荐
三少爷的鞋1 小时前
“结构化”这个词,本质上就是——把混乱的东西变成有组织、有规则、有边界的东西唐青枫1 小时前
Java Spring WebFlux 实战指南:用 Mono、Flux 和 WebClient 写响应式接口小bo波15 小时前
使用Thread子类创建线程 VS 使用Runnable接口创建线程的区别SamDeepThinking15 小时前
高并发场景下,CompletableFuture与ForkJoinPool该如何取舍?方白羽18 小时前
Android Gradle 缓存与文件目录深度解析张不才18 小时前
CPU 100% 了怎么办?Java 性能排障的标准化操作shepherd11120 小时前
吞吐量提升 10 倍:高并发大批量数据处理任务的架构演进与性能调优曲幽1 天前
Termux里的二进制和脚本,到底怎么运行才不踩坑?Termux-service 保活妙招!plainGeekDev1 天前
单例模式 → object 声明程序员陆业聪1 天前
读者点单·03|Compose 与传统 View 混用的 12 个真实坑