基于android的手机应用开发--连连看游戏的开发与实现毕业设计论文

上传人:Bod****ee 文档编号:47365772 上传时间:2018-07-01 格式:DOC 页数:73 大小:1.41MB
返回 下载 相关 举报
基于android的手机应用开发--连连看游戏的开发与实现毕业设计论文_第1页
第1页 / 共73页
基于android的手机应用开发--连连看游戏的开发与实现毕业设计论文_第2页
第2页 / 共73页
基于android的手机应用开发--连连看游戏的开发与实现毕业设计论文_第3页
第3页 / 共73页
基于android的手机应用开发--连连看游戏的开发与实现毕业设计论文_第4页
第4页 / 共73页
基于android的手机应用开发--连连看游戏的开发与实现毕业设计论文_第5页
第5页 / 共73页
点击查看更多>>
资源描述

《基于android的手机应用开发--连连看游戏的开发与实现毕业设计论文》由会员分享,可在线阅读,更多相关《基于android的手机应用开发--连连看游戏的开发与实现毕业设计论文(73页珍藏版)》请在金锄头文库上搜索。

1、本本 科科 毕毕 业业 设设 计(论文)计(论文)题目题目: 基于基于 Android 的手机应用开发的手机应用开发连连看游戏的开发与实现连连看游戏的开发与实现姓姓 名名 学学 院院 信息与通信工程学院信息与通信工程学院专专 业业 自动化自动化 班班 级级 学学 号号 班内序号班内序号 指导教师指导教师 2010 年年 6 月月基于基于 Android 的移动智能应用开发的移动智能应用开发连连看游戏的开发与实现连连看游戏的开发与实现摘摘 要要在地铁、机场和车站,越来越多的人低头玩着手机游戏,伴随着不断变化的表情,或皱眉或微笑。手机已经成为人们生活的一部分,人们也渐渐习惯于将手机作为新的娱乐工具

2、。现在 3G 手机时代又即将开启。2007 年末,Android 平台犹如一颗 Google 公司丢的重磅炸弹,在移动终端领域掀起了轩然大波。Android 凭借其开放性和灵活性渐渐赶超原有系统平台,成为近年来最热门的移动终端平台之一,在 Android 平台上进行游戏的开发,成为一个有趣并富有潜力的领域。此次毕业设计的目的就是了解和掌握 Android 操作系统,并在 Android 平台上做简单的移动智能应用开发。平台采用 Java 语言在 eclipse 上实现并测试。该文章总体上可以分成两大部分,第一部分首先对 Android 平台的搭建作了简要的说明,然后介绍 Android 平台上

3、开发的小游戏“连连看”的过程及方法;该游戏除了能实现传统“连连看”游戏的基本功能外,还有一些附加功能如帮助、背景音乐等。第二部分介绍在 Android 平台上开发的一个程序,这个程序可以实现对视频的录制,并将录好的视频存储在手机的 SD 卡上这样一种功能。其中第二部分可以被借鉴,进一步用于 DVC 编解码的实现。也列举出了在调试程序时遇到的一些问题和解决方法。将这两个程序放到真机上测试也收到了良好的效果。关键词关键词 Android SD 卡 DVC 3GAndroid-based Mobile Intelligent Application Development the developme

4、nt and implementation of the game LianliankanABSTRACTIn the subway, airport and station, more and more people playing mobile games bow, accompanied by changing expression, or frown or smile. Phones have become a part of life, and people became accustomed to hand machine as a new entertainment tool.

5、Now they are soon to open 3G cell phone era.The end of 2007, Android platform broke out like a blockbuster from Google Inc. in the field of mobile terminal has sparked an outcry. Android by virtue of its openness and flexibility gradually catch up with the original platform, become the most popular

6、mobile terminal platforms. The game development in the Android platform has become an interesting and promising area.The graduation project is aimed to understand and master the Android operating system, and to do simple Android platform for mobile intelligent application development. The platform u

7、ses the java language, and is implemented and tested by eclipse.The article in general can be divided into two parts, the first part of the Android platform, a brief description of the structures, and then describes the development of Android platform game “Lianliankan“ process and methods; the game

8、 in addition to achieve the traditional “Lianliankan“ the basic function of the game, there are some additional features such as help, background music. The second part describes the development of Android platform, a program, this program can be recorded on video and video-recorded stored in the SD

9、 card such a function. The second part of which can be reference, and further for DVC codec implementation. Also cited a number of problems and solutions encountered in the debugger These two procedures into a real machine on the test also received good results.KEY WORDS Android sdcard DVC 3G目目 录录第一

10、章第一章 开发背景介绍开发背景介绍-11.1 手机应用市场描述-11.2 移动互联网进展-21.3 智能手机应用平台-31.4 Android 平台介绍 -51.5 Android 开源性能展望 -8第二章第二章 连连看游戏开发过程介绍连连看游戏开发过程介绍-92.1 连连看游戏背景介绍-92.2 连连看游戏开发平台介绍-92.3 核心算法说明-112.3.1 数字化和布局-112.3.2 判断两个点的连通性-122.3.3 布局无解的判断-132.4 连连看游戏 UI 部分介绍-132.5 代码的实现与分析-22第三章第三章 获取视频文件的程序设计获取视频文件的程序设计-273.1 Andr

11、oid 多媒体开发背景介绍 -273.2 MediaRecorder 类的介绍 -283.3 设计思路概述-293.4 程序 UI 部分介绍-293.5 代码的实现与分析-31第四章第四章 遇到的问题及解决方法遇到的问题及解决方法-32第五章第五章 程序开发的心得体会程序开发的心得体会-38参考文献参考文献-39致致 谢谢-39附附 录录 1 1-39附附 录录 2 2-60第一章第一章 开发背景介绍开发背景介绍1.1 手机应用市场描述手机应用市场描述最近几年,国内手机市场发展势头迅猛,以 Nokia、摩托、三星、等较大的手机制造商为主,又相继出现了数不胜数的手机生产厂家,其规模也在不断扩大,彩屏手机、彩信手机、智能手机纷纷上市,高像素照相手机、游戏手机、音乐手机开始纷纷登台亮相,现在又即将开启 3G 手机的时代,使视频通话成为了现实。3G 网络的大规模以迅雷不及掩耳之势席卷全球,企业、消费者对移动商务应用的需求随之攀升。现代商业向3G 移动互联网平台迁移已成为大势所趋。作为微型 PC 和便携终端的手机具备特有的互联网特性。当用户不断地把目光从电脑屏幕转移到手机屏幕的时候,手机给未来的商业带来了无限的遐想1。Mobile Mark

展开阅读全文
相关资源
正为您匹配相似的精品文档
相关搜索

最新文档


当前位置:首页 > 学术论文 > 毕业论文

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