文档介绍:摘要
移动互联网时代的到来极大的改变了我们的生活,而Android是一种以Linux为基础的开放源码操作系统迅速占领了智能机操作系统,所以在android环境下开发显得尤为必要。本文详细介绍了在Android平台上以Java为语言编写游戏的过程。五子棋游戏的开发不仅是一个简单游戏的编写过程,更重要的是在系统分析和设计阶段所做的工作。本文在设计过程中严格遵循软件工程学的方法,用分阶段的生命周期计划严格管理,并主要讲述了程序的总体设计、详细设计阶段,对程序进行需求迭代,不断修正和改进,利用surface重绘等数据存储功能,、大方,方便的操作与良好的视觉感应共同构成了“基于Android平台的五子棋游戏设计与开发”的设计。
关键词: Android,Java,数据存储,软件工程,五子棋
Abstract
Arrival of the mobile era has greatly changed our lives, and Android is a Linux-basedopen source operating system quickly occupied the smartphone operating system, Android developmentis particularly necessary under the circumstances. This paper focus on a "based on the Android platform of Five in a Row game design and development" program design and application system develoment issues as the background, introduces in detail in the Android platform to Java language write games for the development of the Quintet game is not just a progress of programing. What’smore, we need to pay more attention to the work on the period of systematic analysis and program follows the software engineering strictly and narrates the major design and section. Thisprogram maily talk about the period of the system design and the detailed design. And also it will study on the bug fixing and improvements. By using the some fuctiong of datalogging such as the surface, it build a practicable system. The nice and expert interface and good visual introduction form the design which is based on the designing and development of Android platform Five-in-a-row game.
Key words: Android,java, Data Storage,Software Engineering, Five in a Row
目录
5
背景 7
课题来源 7
国内外研究现状 8
论文主要工作 8
2 ANDROID的开发环境 9
操作系统 9
Android开发环境 9
Android开发环境变量配置 10
jdk的配置 10
sdk的配置 11
eclipse设置 11
Android开发环境配置最终步骤 12
3 ANDROID的架构分析 12
Android的功能特征 12
Android架构分析 14
应用程序框架 14
类库 15
Android运行时的组件 16
Android应用的构成和工作机制 16
4 ANDROID应用程