{$cfg_webname}
主页 > 计算机 > JAVA >

基于安卓Android集邮管理软件APP的设计(Android Studio)

来源:56doc.com  资料编号:5D20587 资料等级:★★★★★ %E8%B5%84%E6%96%99%E7%BC%96%E5%8F%B7%EF%BC%9A5D20587
资料以网页介绍的为准,下载后不会有水印.资料仅供学习参考之用. 帮助
资料介绍

基于安卓Android集邮管理软件APP的设计(Android Studio)(任务书,开题报告,论文说明书13000字,程序代码)
摘  要
现今,随着科技的进步,社会的进步,人们的生活越来越忙碌,需要在更短的时间内完成更多的事,因此对于集邮爱好者来说,能在尽可能短的时间内完成对自己所收藏的邮票进行整理就显得更为重要了。而且以往基于PC端的系统使用起来并不方便,不能随时随地的使用,而在手机端这一点就十分容易做到并且十分简洁方便。
本毕业设计主要实现了基于Android的集邮管理系统的有关功能,本软件主要具有邮票的查询,添加,删除,修改,统计等功能,完全能够满足集邮爱好者的需求,本文在筛选了合适的方案后,按照软件开发的基本流程进行了整个开发过程的介绍,并提出了能够据需改进的地方。
关键词:集邮系统;Android;数据库设计;

Abstract
   Today, with advances in technology, social progress, people's lives is becoming more and more busy, more things should be done in a shorter period of time, so for philatelists, it can be completed within the shortest possible time for their collection of stamps sort it becomes more important. And in the past to use the PC-based system is not convenient, you can not use anytime, anywhere, and in the mobile terminal that is very easy to do and is very simple and convenient.
   The graduation project is mainly implemented based on the function Philately Android system, the software has the stamp of the main query, add, delete, modify, statistics and other functions, fully meet the needs of philatelists, the paper in the appropriate screening programs, in accordance with the basic process of software development has been introduced throughout the development process, and can be made according to the need to improve the place.
Key Words:Stamp collecting system;Android;Database design;
现在科技日新月异,手机等移动设备逐渐普及,人们的集邮方式也随之出现了变化。以往传统的纸质记录到网站记录,由于其使用不便等原因也越来越满足不了现代人的集邮需求,使得手机集邮软件逐渐热门起来。手机集邮系统的到来,使得人们能够随时随地的进行相关邮票的收集和查看。基于Android的集邮系统主要功能是可以将手机内存中存储的邮票信息读取出来,使得人们可以随时随地的进行查看和整理。
其功能描述如下:
(1)用户可以根据需要查找相应类型的邮票,并可以得知有多少种符合用户需求的邮票(统计)。
(2)用户可以看自己已收集的邮票信息,记录收藏数量,以及修改信息,或是删除不需要的邮票等操作。
(3)本设计可以根据用户自己的实际情况设置相应的邮票存储数量,方便收集。
(4)用户可以自己手动添加邮票的类型。
(5)用户使用该系统可以不受时间地点的限制,并具有高度的安全性,隐私性。
 

基于安卓Android集邮管理软件APP的设计(Android Studio)
基于安卓Android集邮管理软件APP的设计(Android Studio)
基于安卓Android集邮管理软件APP的设计(Android Studio)
基于安卓Android集邮管理软件APP的设计(Android Studio)


目  录
第1章 绪论    1
1.1 课题研究的目的和意义    1
1.2国内外研究现状    1
1.3 本文的工作与结构    2
第2章 需求分析    3
2.1问题的提出    3
2.2 可行性分析    3
2.2.1可行性研究的前提    3
2.2.2 技术可行性    4
2.2.3 操作可行性    4
2.2.4 经济可行性    4
2.3 功能需求设计    4
2.4 性能需求    4
2.4.1 系统要求    4
2.4.2 准确性    5
第3章Android系统及相关技术简介    6
3.1 Android的平台架构    6
3.1.1 应用程序层    6
3.1.2 应用程序框架层    6
3.2 Android基本组件介绍    7
3.2.1 Activity介绍    7
3.2.2 Service    7
3.2.3 Content Provider    7
3.2.4 Broadcast Receiver    8
3.2.5四大组件总结    8
3.3 Android的五大布局    8
3.3.1 Frame Layout    9
3.3.2 Linear Layout    9
3.3.3 Absolute Layout    9
3.3.4 Relative Layout    9
3.3.5 Table Layout    9
3.4 Android SQLite介绍    10
3.4.1 SQLite的特点    10
3.4.2 SQLiteOpenHelper    10
3.4.3 SQLite Database    11
3.4.4 Cursor    11
3.5实现的平台环境与目标平台    12
第4章 系统功能设计    13
4.1系统描述    13
4.2系统设计方案选择    13
4.2.1 C/S结构    13
4.2.2单机结构    13
4.3系统总体结构设计    14
4.4数据库设计    14
第5章 具体功能的实现    16
5.1主界面模块设计    16
5.2新建邮票界面的设计    17
5.3类型管理界面的设计    19
5.4邮票查询界面的设计    20
5.5信息查看界面开发    21
5.6查找结果界面的开发    22
第6章 系统测试    25
6.1 测试概述    25
6.1.1 软件测试的目的    25
6.1.2 软件测试的原则    25
6.1.3 测试环境    25
6.2 单元测试    26
6.2.1 黑盒测试    26
6.2.2 白盒测试    26
6.3 集成测试    27
6.4 系统测试    27
6.5 开发过程中遇到的问题    28
第7章 总结    29
参考文献    30
致  谢    31

推荐资料