Android-CleanArchitecture

Android-CleanArchitecture

前言

GitHub: https://github.com/android10/Android-CleanArchitecture

Blog:

https://fernandocejas.com/2014/09/03/architecting-android-the-clean-way/

https://8thlight.com/blog/uncle-bob/2012/08/13/the-clean-architecture.html

We know that writing quality software is hard and complex: It is not only about satisfying requirements, also should be robust, maintainable, testable, and flexible enough to adapt to growth and change

Clean architecture

  • Independent of Frameworks.
  • Testable.
  • Independent of UI.
  • Independent of Database.
  • Independent of any external agency.
示例

Dependency Rule: source code dependencies can only point inwards and nothing in an inner circle can know anything at all about something in an outer circle.


  • Entities: These are the business objects of the application. ==> Model
  • Use Cases: These use cases orchestrate the flow of data to and from the entities. Are also called Interactors. ==> data=>model
  • Interface Adapters: This set of adapters convert data from the format most convenient for the use cases and entities. Presenters and Controllers belong here. ==> use Case => data
  • Frameworks and Drivers: This is where all the details go: UI, tools, frameworks, etc. ==>UI

Architectural approach

Architectural approach
Architectural approach

It is worth mentioning that each layer uses its own data model so this independence can be reached.

Presentation Layer (Model View Presenter)

Is here, where the logic related with views and animations happens. It uses no more than a Model View Presenter (MVP from now on), but you can use any other pattern like MVC or MVVM. I will not get into details on it, but here fragments and activities are only views, there is no logic inside them other than UI logic, and this is where all the rendering stuff takes place.

Domain Layer (Regular Java Objects)

Business rules here: all the logic happens in this layer. Regarding the android project, you will see all the interactors (use cases) implementations here as well.

This layer is a pure java module without any android dependencies. All the external components use interfaces when connecting to the business objects.

Data Layer (Repository Pattern)

All data needed for the application comes from this layer through a UserRepository implementation (the interface is in the domain layer) that uses a Repository Pattern with a strategy that, through a factory, picks different data sources depending on certain conditions.

Architectural reactive approach

Architectural reactive approach
Architectural reactive approach
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

  • 不知道什么时候开始迷恋起了一款游戏,对 于我这个从不玩网游的人来说,诱惑是有的。里面没有炫酷的技能、华美的服...
    撕裂一席微凉阅读 259评论 1 1
  • “拥有你就拥有全世界” 然而我没有全世界。 所以就算这么甜,单曲循环了这么多遍,还是听着很悲伤。
    Dedivin阅读 202评论 0 0
  • 今天是8月1日,是建军节。对于广州新高三学生而言,今天,高三生活开始了。 对于这些学生,我相信,他们绝大多数会既紧...
    杜世龙阅读 710评论 0 0

友情链接更多精彩内容