解决android4.0 触摸屏分辨率映射不准

2024-05-13 19:32

本文主要是介绍解决android4.0 触摸屏分辨率映射不准,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

前言 

  android4.0,在触摸屏这块一直有个令人头疼的问题,通常触摸屏的分辨率应该是根据当前屏幕分辨率而定。

但android4.0上就有点奇怪,不管怎么换屏幕的分辨率,触摸屏始终有不准的情况。最近着手研究了这块,通过修改inputreader.cpp 

及 com_android_server_InputManager.cpp终于解决的触摸屏不准的问题。


正文

  由于驱动是直接从android2.3的linux内核中移植过来,而android2.3上又可以正常使用且没有任何区域触摸无反应的情况,因此可以

排除linux-->android层之间的接口问题。


分析

  触摸屏属于输入设备,而且在整个输入过程中肯定是有坐标转换的,否则系统是无法获取触摸屏的准确点击位置。而在android中输入

事件可以到input相关代码中查找。


源码追踪

  仔细分析了下framework代码,可以发现framework//base/services/input/InputReader.cpp 中对触摸事件设置了一个分辨率映射值:

[cpp]  view plain copy
  1. void InputReaderConfiguration::setDisplayInfo(int32_t displayId, bool external,  
  2.         int32_t width, int32_t height, int32_t orientation) {  
  3.     if (displayId == 0) {  
  4.         DisplayInfo& info = external ? mExternalDisplay : mInternalDisplay;  
  5.         info.width = width;  
  6.         info.height = height;  
  7.         info.orientation = orientation;  
  8.     }  
  9. }  

此处DisplayInfo& info = external ? mExternalDisplay : mInternalDisplay;说明该函数可能有两次调用,用于设置两种情况的输入设备。


而附近又对应了获取显示器信息函数

[cpp]  view plain copy
  1. bool InputReaderConfiguration::getDisplayInfo(int32_t displayId, bool external,  
  2.         int32_t* width, int32_t* height, int32_t* orientation) const {  
  3.   
  4. }  

并且在该文件中有多处调用了该函数,其中以下位置比较可疑

[cpp]  view plain copy
  1. void TouchInputMapper::configureSurface(nsecs_t when, bool* outResetNeeded) {  
  2.     int32_t oldDeviceMode = mDeviceMode;  
  3. ......  
  4.  // Get associated display dimensions.  
  5.     if (mParameters.associatedDisplayId >= 0) {  
  6.         if (!mConfig.getDisplayInfo(mParameters.associatedDisplayId,  
  7.                 mParameters.associatedDisplayIsExternal,  
  8.                 &mAssociatedDisplayWidth, &mAssociatedDisplayHeight,  
  9.                 &mAssociatedDisplayOrientation)) {  
  10.             LOGI(INDENT "Touch device '%s' could not query the properties of its associated "  
  11.                     "display %d.  The device will be inoperable until the display size "  
  12.                     "becomes available.",  
  13.                     getDeviceName().string(), mParameters.associatedDisplayId);  
  14.             //这块打印消息直接暴露了 触摸屏设备获取屏幕分辨率的踪迹,看来触摸屏确实是通过获取  
  15.             //当前屏幕分辨率来映射坐标值的  
  16.             mDeviceMode = DEVICE_MODE_DISABLED;  
  17.             return;  
  18.         }  
  19.     }  
  20.   
  21.     // Configure dimensions.  
  22.     int32_t width, height, orientation;  
  23.       
  24.     if (mDeviceMode == DEVICE_MODE_DIRECT || mDeviceMode == DEVICE_MODE_POINTER) {  
  25.         width = mAssociatedDisplayWidth;  //此处保留了之前获取的宽度  
  26.         height = mAssociatedDisplayHeight;//此处保留了之前获取的高度  
  27.         orientation = mParameters.orientationAware ? //此处保留了屏幕的方向  
  28.                 mAssociatedDisplayOrientation : DISPLAY_ORIENTATION_0;  
  29.     } else {  
  30.         width = mRawPointerAxes.x.maxValue - mRawPointerAxes.x.minValue + 1;  
  31.         height = mRawPointerAxes.y.maxValue - mRawPointerAxes.y.minValue + 1;  
  32.         orientation = DISPLAY_ORIENTATION_0;  
  33.          
  34.     }  
看来是有必要追踪是谁调用了   setDisplayInfo  

通过source insight搜索发现

com_android_server_InputManager.cpp中对InputReaderConfiguration::setDisplayInfo调用了两次,代码如下:

[cpp]  view plain copy
  1. void NativeInputManager::getReaderConfiguration(InputReaderConfiguration* outConfig) {  
  2.     JNIEnv* env = jniEnv();  
  3.    ......  
  4.     { // acquire lock  
  5.         AutoMutex _l(mLock);  
  6.   
  7.         outConfig->pointerVelocityControlParameters.scale = exp2f(mLocked.pointerSpeed  
  8.                 * POINTER_SPEED_EXPONENT);  
  9.         outConfig->pointerGesturesEnabled = mLocked.pointerGesturesEnabled;  
  10.   
  11.         outConfig->showTouches = mLocked.showTouches;  
  12.   
  13.         outConfig->setDisplayInfo(0, false /*external*/,  
  14.                 mLocked.displayWidth, mLocked.displayHeight, mLocked.displayOrientation);  
  15.         outConfig->setDisplayInfo(0, true /*external*/,  
  16.                 mLocked.displayExternalWidth, mLocked.displayExternalHeight,  
  17.                 mLocked.displayOrientation);  
  18.     }   
  19. }  

立刻在setDisplayInfo函数中增加打印消息

[cpp]  view plain copy
  1. void InputReaderConfiguration::setDisplayInfo(int32_t displayId, bool external,  
  2.         int32_t width, int32_t height, int32_t orientation) {  
  3.   
  4.     LOGI("[inputreader] [setDisplayInfo] : width=%d height=%d orientation=%d",  
  5.             width, height, orientation);  
  6.     if (displayId == 0) {  
  7.         DisplayInfo& info = external ? mExternalDisplay : mInternalDisplay;  
  8.         info.width = width;  
  9.         info.height = height;  
  10.         info.orientation = orientation;  
  11.     }  
  12. }  
重新制作固件烧录后重启发现:

两次setDisplayInfo分别设置了连个不同分辨率的值下来

笔者用的是lvds输出,分辨率设置为1920*1080

第一次:

[cpp]  view plain copy
  1. [inputreader] [setDisplayInfo] : width=1920 height=1080 orientation=0  
第二次
[cpp]  view plain copy
  1. [inputreader] [setDisplayInfo] : width=1280 height=800 orientation=0  
这一结果也解释了触摸屏不准的情况,原来是将1280*800的分辨率映射到1920*1080的显示屏上。



解决方法

通过测试结果可以发现第一次获取的屏幕分辨率是准确的,因此于是通过以下方式修改,解决了触摸不准的情况

1.注释getReaderConfiguration中第二次调用setDisplayInfo

[cpp]  view plain copy
  1. void NativeInputManager::getReaderConfiguration(InputReaderConfiguration* outConfig) {  
  2.     JNIEnv* env = jniEnv();  
  3.    ......  
  4.         outConfig->setDisplayInfo(0, false /*external*/,  
  5.                 mLocked.displayWidth, mLocked.displayHeight, mLocked.displayOrientation);  
  6.         //outConfig->setDisplayInfo(0, true /*external*/,  
  7.         //       mLocked.displayExternalWidth, mLocked.displayExternalHeight,  
  8.         //        mLocked.displayOrientation);  
  9.     }   
  10. }  

2.setDisplayInfo中修改如下:

[cpp]  view plain copy
  1. void InputReaderConfiguration::setDisplayInfo(int32_t displayId, bool external,  
  2.         int32_t width, int32_t height, int32_t orientation) {  
  3.     LOGI("[inputreader] [setDisplayInfo] : width=%d height=%d orientation=%d",  
  4.             width, height, orientation);  
  5.     if (displayId == 0) {  
  6.         DisplayInfo& info = mExternalDisplay;  
  7.         info.width = width;  
  8.         info.height = height;  
  9.         info.orientation = orientation;  
  10.   
  11.         DisplayInfo& minfo =  mInternalDisplay;  
  12.         minfo.width = width;  
  13.         minfo.height = height;  
  14.         minfo.orientation = orientation;          
  15.     }  
  16. }  

这样修改就将第一次传来的屏幕分辨率保存到两个不同变量中供不同情况使用。至此android4.0的屏幕校准问题解决

这篇关于解决android4.0 触摸屏分辨率映射不准的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/986621

相关文章

如何解决线上平台抽佣高 线下门店客流少的痛点!

目前,许多传统零售店铺正遭遇客源下降的难题。尽管广告推广能带来一定的客流,但其费用昂贵。鉴于此,众多零售商纷纷选择加入像美团、饿了么和抖音这样的大型在线平台,但这些平台的高佣金率导致了利润的大幅缩水。在这样的市场环境下,商家之间的合作网络逐渐成为一种有效的解决方案,通过资源和客户基础的共享,实现共同的利益增长。 以最近在上海兴起的一个跨行业合作平台为例,该平台融合了环保消费积分系统,在短

pip-tools:打造可重复、可控的 Python 开发环境,解决依赖关系,让代码更稳定

在 Python 开发中,管理依赖关系是一项繁琐且容易出错的任务。手动更新依赖版本、处理冲突、确保一致性等等,都可能让开发者感到头疼。而 pip-tools 为开发者提供了一套稳定可靠的解决方案。 什么是 pip-tools? pip-tools 是一组命令行工具,旨在简化 Python 依赖关系的管理,确保项目环境的稳定性和可重复性。它主要包含两个核心工具:pip-compile 和 pip

【VUE】跨域问题的概念,以及解决方法。

目录 1.跨域概念 2.解决方法 2.1 配置网络请求代理 2.2 使用@CrossOrigin 注解 2.3 通过配置文件实现跨域 2.4 添加 CorsWebFilter 来解决跨域问题 1.跨域概念 跨域问题是由于浏览器实施了同源策略,该策略要求请求的域名、协议和端口必须与提供资源的服务相同。如果不相同,则需要服务器显式地允许这种跨域请求。一般在springbo

速盾高防cdn是怎么解决网站攻击的?

速盾高防CDN是一种基于云计算技术的网络安全解决方案,可以有效地保护网站免受各种网络攻击的威胁。它通过在全球多个节点部署服务器,将网站内容缓存到这些服务器上,并通过智能路由技术将用户的请求引导到最近的服务器上,以提供更快的访问速度和更好的网络性能。 速盾高防CDN主要采用以下几种方式来解决网站攻击: 分布式拒绝服务攻击(DDoS)防护:DDoS攻击是一种常见的网络攻击手段,攻击者通过向目标网

Jenkins 插件 地址证书报错问题解决思路

问题提示摘要: SunCertPathBuilderException: unable to find valid certification path to requested target...... 网上很多的解决方式是更新站点的地址,我这里修改了一个日本的地址(清华镜像也好),其实发现是解决不了上述的报错问题的,其实,最终拉去插件的时候,会提示证书的问题,几经周折找到了其中一遍博文

Redis中使用布隆过滤器解决缓存穿透问题

一、缓存穿透(失效)问题 缓存穿透是指查询一个一定不存在的数据,由于缓存中没有命中,会去数据库中查询,而数据库中也没有该数据,并且每次查询都不会命中缓存,从而每次请求都直接打到了数据库上,这会给数据库带来巨大压力。 二、布隆过滤器原理 布隆过滤器(Bloom Filter)是一种空间效率很高的随机数据结构,它利用多个不同的哈希函数将一个元素映射到一个位数组中的多个位置,并将这些位置的值置

linux 下Time_wait过多问题解决

转自:http://blog.csdn.net/jaylong35/article/details/6605077 问题起因: 自己开发了一个服务器和客户端,通过短连接的方式来进行通讯,由于过于频繁的创建连接,导致系统连接数量被占用,不能及时释放。看了一下18888,当时吓到了。 现象: 1、外部机器不能正常连接SSH 2、内向外不能够正常的ping通过,域名也不能正常解析。

proxy代理解决vue中跨域问题

vue.config.js module.exports = {...// webpack-dev-server 相关配置devServer: {host: '0.0.0.0',port: port,open: true,proxy: {'/api': {target: `https://vfadmin.insistence.tech/prod-api`,changeOrigin: true,p

解决Office Word不能切换中文输入

我们在使用WORD的时可能会经常碰到WORD中无法输入中文的情况。因为,虽然我们安装了搜狗输入法,但是到我们在WORD中使用搜狗的输入法的切换中英文的按键的时候会发现根本没有效果,无法将输入法切换成中文的。下面我就介绍一下如何在WORD中把搜狗输入法切换到中文。

【Python报错已解决】AttributeError: ‘list‘ object has no attribute ‘text‘

🎬 鸽芷咕:个人主页  🔥 个人专栏: 《C++干货基地》《粉丝福利》 ⛺️生活的理想,就是为了理想的生活! 文章目录 前言一、问题描述1.1 报错示例1.2 报错分析1.3 解决思路 二、解决方法2.1 方法一:检查属性名2.2 步骤二:访问列表元素的属性 三、其他解决方法四、总结 前言 在Python编程中,属性错误(At