代码组织结构划分

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/weixin_36282409/article/details/75393680

一、根据业务逻辑划分

- 办公软件

	- 出差 com.example.travel
	- 工资 com.example.money
	- 会议 com.example.meeting

- 网盘

	- 上传 com.vdisk.upload
	- 下载 com.vdisk.download
	- 分享 com.vdisk.share

二、 根据功能模块划分(Android开发推荐此方法)

- Activity com.example.activty
- 后台服务  com.example.service
- 广播接受者 comexample.receiver
- 数据库 com.example.db.dao
- 对象(java bean) com.example.domain/bean
- 自定义控件 com.example.view
- 工具类 com.example.utils
- 业务逻辑 com.example.engine

猜你喜欢

转载自blog.csdn.net/weixin_36282409/article/details/75393680