Android 中多点触摸协议

http://blog.csdn.net/zuosifengli/article/details/7398661

Android 中多点触摸协议:

参考: http://www.kernel.org/doc/Documentation/input/multi-touch-protocol.txt

1, 两种多点触摸协议:

1)A类: 处理无关联的接触: 用于直接发送原始数据;

B类: 处理跟踪识别类的接触: 通过事件slot发送相关联的独立接触更新。

2,  触摸协议的使用:

A类协议:

A类协议在每发送完一个接触数据包后会调用 input_mt_sync() 声明 一次数据的结束; input_mt_sync() 会发出一个 SYN_MT_REPORT

提示接收器接收数据并准备下一次数据的接收。

B类协议:

与A类协议不同的是, B类在使用input_mt_slot()的时候会带有一个slot的参数,在每个数据包开始时 产生一个ABS_MT_SLOT事件,提示接收器更新数据。

最终A,B类协议均会调用 input_sync();

A类与B类协议不同的在于: B类协议 通过B类协议 slot 协议需要是用到ABS_MT_TRACKING_ID------ 可以从硬件上获取,或者从原始数据中计算。

3, B类协议:  ABS_MT_TRACKING_ID  表示一次接触;  -1 代表一个不用的slot;

使用参考例子:

释放事件:

input_mt_slot(data->input_dev, i);
                      input_mt_report_slot_state(data->input_dev, MT_TOOL_FINGER, false);        ---------------释放

点击事件:

input_mt_slot(data->input_dev, i);
                      input_mt_report_slot_state(data->input_dev, MT_TOOL_FINGER, true);
                      input_report_abs(data->input_dev, ABS_MT_TOUCH_MAJOR, 1);
                      input_report_abs(data->input_dev, ABS_MT_POSITION_X,  current_events[i].x);
                      input_report_abs(data->input_dev, ABS_MT_POSITION_Y,  current_events[i].y)

补充: 不同事件的标记: 备忘。

ABS_MT_TOUCH_MAJOR

The length of the major axis of the contact. The length
should be given insurface units. If the surface has an X times Y
resolution, the largestpossible value of ABS_MT_TOUCH_MAJOR is sqrt(X^2 +
Y^2), the diagonal [4].

ABS_MT_TOUCH_MINOR

The length, in surface units, of the minor axis of the
contact. If thecontact is circular, this event can be omitted [4].

ABS_MT_WIDTH_MAJOR

The length, in surface units, of the major axis of the
approachingtool. This should be understood as the size of the tool
itself. Theorientation of the contact and the approaching tool are
assumed to be thesame [4].

ABS_MT_WIDTH_MINOR

The length, in surface units, of the minor axis of the
approachingtool. Omit if circular [4].The above four values can be used
to derive additional information aboutthe contact. The ratio
ABS_MT_TOUCH_MAJOR / ABS_MT_WIDTH_MAJOR approximatesthe
notion of pressure. The fingers of the hand and the palm all
havedifferent characteristic widths [1].

ABS_MT_PRESSURE

The pressure, in arbitrary units, on the contact area.
May be used insteadof TOUCH and WIDTH for pressure-based devices or any
device with a spatialsignal intensity distribution.

ABS_MT_DISTANCE

The distance, in surface units, between the contact and
the surface. Zerodistance means the contact is touching the surface. A
positive number meansthe contact is hovering above the surface.

ABS_MT_ORIENTATION

The orientation of the ellipse. The value should describe a
signed quarterof a revolution clockwise around the touch center. The
signed value rangeis arbitrary, but zero should be returned for a finger
aligned along the Yaxis of the surface, a
negative value when finger is turned to the left, anda positive value
when finger turned to the right. When completely aligned withthe X axis,
the range max should be returned. Orientation can be omittedif the
touching object is circular, or if the information
is not availablein the kernel driver. Partial orientation support is
possible if the devicecan distinguish between the two axis, but not
(uniquely) any values inbetween. In such cases, the range of
ABS_MT_ORIENTATION should be [0, 1][4].

ABS_MT_POSITION_X

The surface X coordinate of the center of the touching
ellipse.ABS_MT_POSITION_YThe surface Y coordinate of the center of the
touching ellipse.

ABS_MT_TOOL_TYPE

The type of approaching tool. A lot of kernel drivers
cannot distinguishbetween different tool types, such as a finger or a
pen. In such cases, theevent should be omitted. The protocol currently
supports MT_TOOL_FINGER andMT_TOOL_PEN [2]. For
type B devices, this event is handled by input core;drivers should
instead use input_mt_report_slot_state().

ABS_MT_BLOB_ID

The BLOB_ID groups several packets together into one
arbitrarily shapedcontact. The sequence of points forms a polygon which
defines the shape ofthe contact. This is a low-level anonymous grouping
for type A devices, andshould not be confused
with the high-level trackingID [5]. Most type Adevices do not have blob
capability, so drivers can safely omit this event.

ABS_MT_TRACKING_ID

The TRACKING_ID identifies an initiated contact throughout
its life cycle[5]. The value range of the TRACKING_ID should be large
enough to ensureunique identification of a contact maintained over an
extended period oftime. For type B devices,
this event is handled by input core; driversshould instead use
input_mt_report_slot_state().

时间: 2024-10-13 04:56:46

Android 中多点触摸协议的相关文章

Android中TouchEvent触摸事件机制

当我们的手指在Android屏幕上点击或滑动时,就会触发触摸事件TouchEvent.在App中ViewGroup和View存在多级嵌套,在最外层的是Activity,最内层的View,介于Activity与View之间的是一些ViewGroup.本文为了简化讨论,我们假设一个Activity中只有一个ViewGroup,这个ViewGroup中只有一个View.当我们用手指触摸到View的UI时,就会产生触摸事件TouchEvent,总的过程如下图所示: 首先是最外层的Activity接收到该

Linux Android 多点触摸协议 原文出自【比特网】,转载请保留原文链接:http://soft.chinabyte.com/os/71/12306571.shtml

为了使用功能强大的多点触控设备.就须要一种方案去上报用户层所需的具体的手指触摸数据. 这个文档所描写叙述的多点触控协议能够让内核驱动程序向用户层上报随意多指的数据信息. 使用说明 单点触摸信息是以ABS承载并按一定顺序发送,如BTN_TOUCH.ABS_X.ABS_Y.SYNC.而多点触摸信息则是以ABS_MT承载并按一定顺序发送.如ABS_MT_POSITION_X.ABS_MT_POSITION_Y,然后通过调用input_mt_sync()产生一个 SYN_MT_REPORT event来

Android中使用http协议访问网络

HTTP协议的工作原理:客户端向服务器端发送http请求,服务器端收到请求后返回一下数据给客户端,客户端接受消息并进行解析. 在Android中发送http请求的方式有两种,第一种是通过HttpURLConnection的方式,第二种是通过HttpClient的方式. 通过HttpURLConnection的方式发送http请求 通常分为以下5个步骤: 1.获取HttpURLConnection实例对象.先new一个URL实例,然后调用该对象的openConnection()方法. 2.设置ht

Android中即时通讯协议选择

Android中的即时通讯,就是客户端要与服务器建立长时间的连接,正常情况下Android中请求服务器数据后,连接一般断开.但即时通讯类的对消息的实时性要求比较高.需要客户端与服务器建立长时间的连接,这样,才能保证消息的时实性. 1.XMPP协议 1.XMPP基于xml,XMPP用TCP传递的是xml流.它具有xml的灵活性和扩展性.可以实现服务类实时通讯. XMPP的核心XML流传输协议的定义使得XMPP能够在一个比以往网络通信协议更规范的平台上.借助于XML易于解析和阅读的特性. XMPP核

总体把握Android中的触摸事件处理

先看几个函数:提到Android的触摸事件处理,不少人都会立刻想到某些令人头疼的函数,这里列举一下,刺激一下你的小神经: @Override public boolean onTouchEvent(MotionEvent event) { return super.onTouchEvent(event); } @Override public boolean dispatchTouchEvent(MotionEvent ev) { return super.dispatchTouchEvent(

android黑科技系列——Wireshark和Fiddler分析Android中的TLS协议包数据(附带案例样本)

一.前言 在之前一篇文章已经介绍了一款网络访问软件的破解教程,当时采用的突破口是应用程序本身的一个漏洞,就是没有关闭日志信息,我们通过抓取日志获取到关键信息来找到突破口进行破解的.那篇文章也说到了,如果这个app应用没有日志信息,我们该怎么办呢?那么这时候就需要采用抓包来寻找突破口了. 二.安装Fiddler证书 我们通过Fiddler连接手机进行抓包查看,应用访问数据信息都是用的HTTPS协议,也就是加密的数据,我们可能无法查看,比较麻烦,本文就来讲解如何查看这些加密数据了. 首先我们知道Fi

Android中利用HTTP协议实现上传文件到服务器

首先我们需要使用HTTP协议发送数据,我们就要知道HTTP发送上传文件到服务器的时候需要哪些头字段已经相关的配置,请看下图 这是使用浏览器模拟上传文件到服务器时候所发送的请求,我们可以看到它包含了请求头字段和实体部分,但是多了一个---------------------------7da2137580612,它实际上是一条分隔线,用于分隔实体数据的,他在使用分隔实体数据的时候会在前面包含多两个"-"而在结束的时候会在除了在前面都出两个减号"-"之外,还会在末尾都出

《转》Unity Android/IOS 多点触摸实例

Unity中获取到的坐标是左下角为(0,0) 但是绘画的时候是以左上角为(0,0) 所以直接在获取到的坐标上画图是不行的-- ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 using UnityEngine; using System.Collections; public class MultiTouch : MonoBehaviou

Android中你应该知道的设计模式

建造者模式 建造者模式最明显的标志就是Build类,而在Android中最常用的就是Dialog的构建,Notification的构建也是标准的建造者模式. 建造者模式很好理解,如果一个类的构造需要很多参数,而且这些参数并不都是必须的,那么这种情况下就比较适合Builder. 比如构建一个AlertDialog,标题.内容.取消按钮.确定按钮.中立按钮,你可能只需要单独设置几个属性即可:另外在我的OkHttpPlus项目中,构造一个Http请求也是这样的,有可能你只需要设置URL,有可能需要添加