android tp触摸唤醒,Android TP出现小圆点解决方法

__set_bit(INPUT_PROP_DIRECT, input_dev->propbit);

INPUT_PROP_DIRECT特性表明设备的坐标直接和屏幕坐标向对应(无需琐碎的转换操作,像缩放,反转,旋转等)。非直接输入设备则需要一些必要的变换,比如触摸板上绝对到相对的变换。典型的直接输入设备有:触摸屏,手写板;非直接输入设备有:触摸板,鼠标。

frameworks/native/services/inputflinger/InputReader.cpp

if (getEventHub()->hasInputProperty(getDeviceId(), INPUT_PROP_DIRECT)) {

// The device is a touch screen.

mParameters.deviceType = Parameters::DEVICE_TYPE_TOUCH_SCREEN;

} else if (getEventHub()->hasInputProperty(getDeviceId(), INPUT_PROP_POINTER)) {

// The device is a pointing device like a track pad.

mParameters.deviceType = Parameters::DEVICE_TYPE_POINTER;

} else if (getEventHub()->hasRelativeAxis(getDeviceId(), REL_X)

|| getEventHub()->hasRelativeAxis(getDeviceId(), REL_Y)) {

// The device is a cursor device with a touch pad attached.

// By default don‘t use the touch pad to move the pointer.

mParameters.deviceType = Parameters::DEVICE_TYPE_TOUCH_PAD;

} else {

// The device is a touch pad of unknown purpose.

mParameters.deviceType = Parameters::DEVICE_TYPE_POINTER;

}

原文:https://www.cnblogs.com/seamoon23/p/11903745.html

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值