触摸屏的实现原理及在android上的实现

上传人:n**** 文档编号:37525385 上传时间:2018-04-17 格式:DOC 页数:35 大小:292.50KB
返回 下载 相关 举报
触摸屏的实现原理及在android上的实现_第1页
第1页 / 共35页
触摸屏的实现原理及在android上的实现_第2页
第2页 / 共35页
触摸屏的实现原理及在android上的实现_第3页
第3页 / 共35页
触摸屏的实现原理及在android上的实现_第4页
第4页 / 共35页
触摸屏的实现原理及在android上的实现_第5页
第5页 / 共35页
点击查看更多>>
资源描述

《触摸屏的实现原理及在android上的实现》由会员分享,可在线阅读,更多相关《触摸屏的实现原理及在android上的实现(35页珍藏版)》请在金锄头文库上搜索。

1、武汉工程大学邮电与信息工程学院武汉工程大学邮电与信息工程学院毕业设计(论文)毕业设计(论文)触摸屏的实现原理及在触摸屏的实现原理及在 android 上的实现上的实现The Principle of the Touch Screen and the Realization of the Android学生姓名 学 号 专业班级 指导老师 2014 年年 5 月月武汉工程大学邮电与信息工程学院毕业设计(论文)作者声明作者声明本人声明所呈交的论文是我个人在导师指导下进行的研究工作及取得的研究成果,除了文中特别加以标注的地方外,没有任何剽窃、抄袭、造假等违反学术道德、学术规范的行为,也没有侵犯任何其

2、他人或组织的科研成果及专利。与我一同工作的同志对本研究所做的任何贡献均已在论文中作了明确的说明并表示了谢意。如本毕业设计(论文)引起的法律结果完全由本人承担。毕业设计(论文)成果归武汉工程大学邮电与信息工程学院所有。特此声明。作者专业: 作者学号: 作者签名: _年_月_日武汉工程大学邮电与信息工程学院毕业设计(论文)摘摘 要要触摸屏作为一种新颖的且直接的输入操作方式已经在全球流行。Android 系统的移动设备(智能手机、平板电脑等)由于输入操作的需要,均选用一块全触屏作为其主要输入方式,而为了实现多点触摸,几乎都使用了电容式触摸屏。触摸屏的实现对屏功能的扩展十分有利,应用范围因此大大扩展。

3、更大的屏幕尺寸对触摸屏开辟了更广阔的市场空间,同时也提出了更高的要求。如何保证触摸屏系统的稳定性,如何提高系统的整体性能,如何增强用户体验,是此论文讨论的重点。本人在论文研究阶段,主要工作有以下几点:1认真研究 Android 系统架构和手机硬件结构的基础上,完成了 SPI 总线的触摸屏系统硬件设计;2将触摸屏设计为 A 区和 B 区,A 区用于检测触摸点坐标,B 区用于检测触摸手势,并且通过对 B 区一些相关参数的合理设定,提升了用户体验;3对 Android 的 Linux Kernel,特别是输入子系统、SPI 子系统、工作队列机制等模块,进行了深入研究;4对触摸屏控制 IC 的数据传输

4、方式和协议进行设计,编写完成了融入系统内核的触摸屏驱动程序,使得触摸屏控制 IC 的数据通过 SPI 总线快速准确的传输到操作系统,顺利实现了操作系统与触摸屏硬件的交互;5在 Android 版本升级到 2.2 之后,完成了触摸屏多点触摸功能在驱动层上的摘要实现,使得触摸屏 IC 的多点数据同时成功上报,用户可以在触摸屏上体验到两点乃至五点同时触摸的操作;6最后对触摸屏模块进行了详细测试,并解决了一些在测试过程中发现的问题,最终达到了系统稳定、性能优良、用户体验良好的理想效果。关键词:关键词:Android;触摸屏;Linux武汉工程大学邮电与信息工程学院毕业设计(论文)AbstractTou

5、ch screen as a novel and direct input mode of operation has been popular all over the world. Mobile Android system (intelligent mobile phone, tablet computer) because of the need to input operation, with a full touch screen as the primary input mode, in order to achieve multi touch, almost all of th

6、e use ofcapacitive touch screen. Touch screen to achieve the expansion screen function is very advantageous, thus greatly expanded scope of application.The larger screen size and open up a broader market space to the touch screen, and also put forward higher requirements. How to ensure the stability

7、 of the touch screen system, how to improve the overall performance of the system, how to enhance the user experience, is the focus of this paper.I study in this paper, the main work is as follows:1. serious research on the system architecture of Android and mobile phonehardware structure, completed

8、 the touch screen system hardware design of SPI bus;2. the touch screen is designed for A and B region, A region for detecting the touch point coordinate, B for the detection of touch gestures, and throughreasonable values for some parameters of the B area, and improve the user experience;3. on the

9、Android Linux Kernel, especially the input subsystem, SPI subsystem,the work queue mechanism module, in-depth research;4. on the touch screen to control the data transmission in IC and protocoldesign, completed the touch screen into the system kernel driver, the touch screen controlIC data through t

10、he SPI bus rapid and accurate transfer to theoperating system, the smooth realization of the interactive operating systemand touch screen hardware;5. After the Android version to upgrade to 2.2, completed the touch screenmulti touch function in driving the layer, the more data IC touch screen andrep

11、orting, the user can experience points and five points also touch on the touch screen operation;6. at the end of the touch screen module in detail and test, and solves somefo武汉工程大学邮电与信息工程学院毕业设计(论文)und problems in the testing process, eventually reaching the system stability, excellent performance, u

12、ser experience good ideal effect.Key Words: Android; Touch screen; Linux目录目录第第 1 章章 绪论绪论.1武汉工程大学邮电与信息工程学院毕业设计(论文)1.1 Android 触摸屏技术的现状与发展趋势.11.1.1 Android 发展现状.11.1.2 触摸屏发展现状.11.2 本论文的研究内容.2第第 2 章章 电容式触摸屏工作原理电容式触摸屏工作原理.42.1 触摸屏简介.42.2 电容式触摸屏硬件工作原理.52.3 Linux SPI 子系统.6第第 3 章章 Android 概述概述.93.1 Android 简介.93.2 Android 的特征.93.3 Android 的架构.113.3.1 应用程序 Applications.

展开阅读全文
相关资源
相关搜索

当前位置:首页 > 电子/通信 > 综合/其它

电脑版 |金锄头文库版权所有
经营许可证:蜀ICP备13022795号 | 川公网安备 51140202000112号