当前位置:文档之家› Android电子课堂表计算机专业毕业说明书

Android电子课堂表计算机专业毕业说明书

Android电子课堂表计算机专业毕业说明书
Android电子课堂表计算机专业毕业说明书

毕业设计

题目:基于android平台的电子课表查询设计与实现

姓名:

班级:软件班

学号:

学院:软件学院

专业:软件工程

指导教师:

2014年 4 月 18 日

基于android平台的电子课表查询设计与实现

摘要

智能手机虽然早在多年前就已出现,但那时的智能手机的功能主要是本地应用,这些手机以Nokia的Symbian系统为主。但随着移动互联网时代的到来,本地应用已远远无法满足用户的需求了。然而在创新为王的今天,新的技术总在不断取代旧的技术。以创新闻名的Google为了进军移动广告市场,就开始研制新的移动操作系统Android。

本程序主要使用了Java和Android的基础编程知识,用户界面采用MVC模型的电子课表应用程序的结构和设计实现过程。本程序的开发工具为Eclipse,并通过与SQLite 数据库相连,从而实现了基于Android的电子课表管理应用程序。

关键词:Android,Sqlite,MVC

Query android platform-based electronic curriculum Design and

Implementation

Abstract

Although many years ago smart phones had already appeared, but at that time the smart phone's main function is the local application and these phones is based on Nokia's Symbian OS.But with the arrival of the era of mobile Internet,the local application has far unable to meet the needs of users.However, in innovation is the king of today,new technology is always replacing the old technology.In order to enter the mobile advertising market,Google, known for innovation,started to develop a new mobile operating system Android.There have been all kinds of software and applications to join the Android system,the calendar application program as one of the daily tools,it has many small functions. Mainly in the display of date gives people the expression of the visual effect,inquires the date is very convenient and simple,and it is also a reminder of certain festivals that can brought us great convenience.It is a more practical little tool.

This program is mainly used the basic programming knowledge of Java and Android and user view using the MVC model.Its development tool is Eclipse, and connects to the SQLite database, thereby achieve a calendar application program based on Android.Its main functions include the following two aspects: first,the front display,in the application home page you can view date;Second,background management,mainly do something about create, retrieve, update, delete of information.

Key words: Android, Sqlite, MVC

目录

摘要 (1)

Abstract (2)

目录 (3)

第1章绪论 (5)

1.1 论文研究主要内容 (5)

1.2 国内外现状 (6)

第2章关键技术介绍 (8)

2.1 Java开发方面 (8)

2.2 Android用户界面技术 (8)

第3章系统分析 (10)

3.1 系统概述 (10)

3.1.1 功能框架 (10)

3.1.2 系统特性 (10)

3.1.3 需求规格 (11)

3.1.4 系统用例规约 (12)

3.1.5 系统的流程分析 (15)

3.2 系统开发环境 (16)

3.3 系统任务的可行性分析 (17)

第4章系统设计 (18)

4.1 设计指导思想和原则 (18)

4.1.1 指导思想 (18)

4.1.2 软件设计原则 (18)

4.2 系统的功能结构设计 (18)

4.3 系统静态模型设计 (20)

4.4 数据库设计 (22)

4.4.1 数据库设计的概述 (22)

4.4.2 概念结构设计 (23)

4.4.3 逻辑结构设计 (23)

4.4.4 物理结构设计 (24)

第5章系统实现 (25)

5.1 应用程序功能实现 (25)

5.2 应用程序界面功能实现 (25)

5.2.1 应用程序主界面 (25)

5.2.2 指定课表界面 (26)

5.2.3 显示所有的课表 (28)

5.3 数据库存储方式 (29)

第6章系统测试 (31)

6.1 测试方案及测试用例 (31)

6.2 系统测试计划 (31)

6.3 系统测试 (31)

6.4 测试总结 (32)

第7章结论 (33)

参考文献 (34)

致谢 (35)

外文原文: (36)

中文翻译: (41)

基于android的简单记事本的设计大学论文

设计报告成绩评定表: 评分内容成绩 系统方案思路合理性(10%) 报告内容的完整性(10%) 硬件原理图及说明(20%) 程序流程图(20%) 程序清单(10%) 调试及结果分析(10%) 系统改进建议或者方案(10%) 格式规范(10%) 总分 备注:以上总分为该组的平均分,根据成员分工具体分数如下。 小组成员分工分数刘志负责代码的编写 云庆负责总计界面的设计与优化 负责整个设计过程中的ppt制作,以及答辩申任翔 吴宜凡负责调试整个程序,报告撰写

基于Android的简单记事本的设计 摘要 本文主要阐述了基于Android的简单记事本的设计与实现,较为系统的介绍了用户通过点击add按钮编辑事件、通过save按钮添加事件,以及在主界面查看事件列表、单击列表查看单个事件的详细内容,和通过长按列表弹出对话框,选择修改事件、删除事件等。本文主要介绍的是运用eclipse软件进行Android 应用的设计,如使用Activity类、运用Intent技术实现页面的跳转、通过数据存储实现标题、时间、内容的保存以及取出查看的功能。通过以上技术使应用中的各项操作简便易懂并且有明确的提示,让用户可以更清晰快捷地掌握该记事本的使用,为用户节省了时间,为用户提供了便利,随时随地都能记录生活。 关键词:Android、记事本、Intent、Activity

目录 绪论 (1) 一丶需求分析和概要设计 (3) 1.1需求分析 (3) 1.2整体要求 (3) 1.3开发工具和环境 (3) 二丶系统设计 (4) 2.1系统设计架构 (4) 2.2界面概述 (5) 2.3模块概述 (6) 三丶系统详细设计 (6) 四丶系统的不足及改进 (9) 五丶总结 (10) 六丶参考文献 (11)

Android设计说明书

Android设计说明书 姓名:卢昌民 学号:1218160228 班级:R工业设计12-2 指导教师:王艳娟 打电话 一.功能介绍: 通过拨号连接网络实现通话的一个小程序。 这里我们新建的工程叫做callphone,实现打电话功能我们需要修改三个文件,

分别是activity_main.xml,MainActivity.java以及AndroidManifest.xml。 其中activity_main.xml负责页面显示,MainActivity.java写java源代码AndroidManifest.xml用来授权使用权限。 二.源代码分析: activity_main.xml中操作:

相关文档 最新文档