设计 任务书 文档 开题 答辩 说明书 格式 模板 外文 翻译 范文 资料 作品 文献 课程 实习 指导 调研 下载 网络教育 计算机 网站 网页 小程序 商城 购物 订餐 电影 安卓 Android Html Html5 SSM SSH Python 爬虫 大数据 管理系统 图书 校园网 考试 选题 网络安全 推荐系统 机械 模具 夹具 自动化 数控 车床 汽车 故障 诊断 电机 建模 机械手 去壳机 千斤顶 变速器 减速器 图纸 电气 变电站 电子 Stm32 单片机 物联网 监控 密码锁 Plc 组态 控制 智能 Matlab 土木 建筑 结构 框架 教学楼 住宅楼 造价 施工 办公楼 给水 排水 桥梁 刚构桥 水利 重力坝 水库 采矿 环境 化工 固废 工厂 视觉传达 室内设计 产品设计 电子商务 物流 盈利 案例 分析 评估 报告 营销 报销 会计
 首 页 机械毕业设计 电子电气毕业设计 计算机毕业设计 土木工程毕业设计 视觉传达毕业设计 理工论文 文科论文 毕设资料 帮助中心 设计流程 
垫片
您现在所在的位置:首页 >>计算机毕业设计 >> 文章内容
                 
垫片
   我们提供全套毕业设计和毕业论文服务,联系微信号:biyezuopin QQ:2922748026   
基于课程表的校园应用App平台设计与实现 毕业论文+答辩PPT
文章来源:www.biyezuopin.vip   发布者:毕业作品网站  

基于课程表的校园应用App平台设计与实现

摘  要

随着移动设备及移动互联网的迅速发展,手机成为人们获取信息的主要来源,为了师生在移动终端获取学校课程表、成绩、考试信息及校园综合信息,我们的团队设计开发实现了基于课程表的校园应用APP——汕大课程表。整合校园信息获取渠道,集聚人气,服务师生。目前该APP已在两个应用市场上线,稳定用户占学校人数70%以上,而据Umeng SDK统计结果,每天打开次数达到8000次以上。

汕大课程表APP主要包括三部分工作:后端设计与实现、iOS版APP的设计与实现、Android版APP的设计与实现,笔者设计实现了Android版汕大课程表APP。在数据储存设计中,依数据不同特性,采取不同存储模式:SharedPreferences、文件、数据库。在总体架构设计中,对 GUI层类用MVP(Model-View-Presenter)架构分层,结合使用Dagger2库通过依赖倒置方式进行MVP三层之间依赖注入工作,在MVP架构上通过使用Rxjava进行响应式编程,以处理MVP之间数据流。当确定好以上的基本架构时,再进行具体的模块分层,总体上划分为作用域模块、数据操作模块、适配器及代理实现模块、工具及组件模块、GUI功能模块,其中,GUI功能模块中的每一个UI界面分别含有VP层及其依赖注入相关类。GUI功能模块共有课程表、成绩查询、考试安排、流量验证、办公自动化、图书查询、校内邮箱、东门外卖、校内动态九个大类,其界面设计实现均遵从Material design规范。最后根据校内服务器、办公自动化、Bmob、图书馆网页这四类数据源各自的特性,分类进行具体的功能设计实现。

在以上设计实现中,为减少生成apk的体积,通过优化图片资源、选用代码较少的第三方库、开启代码混淆及使用微信资源混淆工具完成apk打包实现。

关键词:课程表;MVP;响应式;依赖注入;依赖倒置


The design and implementation of university applications based on syllabus

Abstract

With the rapid development of mobile devices and Internet, mobile phones become the main source of information for people to access.In order to allow teachers and students to get the school curriculum, grades, test information and campus information in the mobile terminal,our team designed and developed  STU Curriculum, a campus APP based on curriculum.It integrates campus information access channels, gathers popularity as well as services teachers and students.At present, this APP has two applications in the market line, stable users accounted for more than 70% of the population of school.According to Umeng SDK statistical results, the number of times used per day more than 8000 times.

STU Curriculum mainly consists of three parts: the back-end design and implementation, design and implementation of iOS version APP, design and implementation of Android version APP,and I designed and implemented the Android version APP.In the data storage design, according to the different characteristics of data. We used different storage modes: SharedPreferences, files, database.In the overall architecture design,we used MVP (Model-View-Presenter) architecture to stratify the GUI layer and combined with the use of Dagger2 library,using the Inversion of Dependency to do the Dependency Injection between three layers of MVP.On the MVP architecture, response programming is  implemented by using Rxjava,which is to handle the data flow between the MVP.When the above basic architecture is defined, the specific module hierarchy is then carried out.As a whole, it is divided into scope module, data operation module, adapter and agent implementation module, tool and component module, and GUI function module.Among them, each UI interface in the GUI function module contains the VP layer and its dependency injection related classes.There are nine major categories in the GUI function module : curriculum schedule, score inquiry, examination arrangement, traffic verification, office automation, book inquiry,school mailbox, East Gate take-out and campus dynamic new.Its interface design and implementation comply with the Material design specification.Finally, according to the characteristics of four kinds of data sources:campus server, office automation, Bmob and Library Web page,the specific functions are designed and implemented.

In the above design implementation, in order to reduce the volume of the generated APK, we optimized the picture resources, selected the third party libraries with fewer codes,


opened Code Obfuscation and use WeChdat obfuscation tools to implement APK packaging.

Keywords:Syllabus;MVP;reactive;dependency injection;Dependency Inversion


目录

摘  要 I

Abstract II

1.绪论

1.1 背景意义

1.2 项目现状

1.3 主要工作

1.4 论文结构

2 相关技术

2.1 MVP分层架构

2.1.1 MVC模式

2.1.2 MVP模式

2.1.3 Android上的MVP结构的最佳实践

2.2 响应式编程

2.2.1 什么是响应式编程

2.2.2 Android上的观察者模式

2.2.2 Rxjava和RxAndroid

2.2.4 Android上响应式编程的线程处理

2.3 依赖注入

2.3.1依赖注入与控制反转

2.3.2为什么需要使用依赖注入

2.3.3 依赖倒置

2.3.2 依赖注入框架Dagger2

3 数据储存设计

3.1 SharedPreferences设计

3.2 文件设计

3.3 数据库设计

4 总体设计

4.1 MVP架构设计

4.2 响应式编程设计

4.3 MVP依赖处理设计

4.4 项目模块设计

4.5 界面设计

4.6 功能设计实现

4.6.1校内服务器数据源

4.6.2 办公自动化微信数据源

4.6.3 Bmob数据源

4.6.4 图书馆网页数据源

4.7 apk瘦身设计

5 结语


5.1 评述

5.2 展望

参考文献

致谢













  全套毕业设计论文现成成品资料请咨询微信号:biyezuopin QQ:2922748026     返回首页 如转载请注明来源于www.biyezuopin.vip  

                 

打印本页 | 关闭窗口
本类最新文章
基于前馈控制的动态电压恢复器(D 光纤的色散补偿方式及应用分析 毕 基于10kV配电网线损的仿真计算
华兴科技公司网络规划与设计 毕业 宠物之家寄养系统的设计与实现 毕 SSM的毕业生去向登记分析管理系
| 关于我们 | 友情链接 | 毕业设计招聘 |

Email:biyeshejiba@163.com 微信号:biyezuopin QQ:2922748026  
本站毕业设计毕业论文资料均属原创者所有,仅供学习交流之用,请勿转载并做其他非法用途.如有侵犯您的版权有损您的利益,请联系我们会立即改正或删除有关内容!