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
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

  • 不知道什么時(shí)候開(kāi)始迷戀起了一款游戲,對(duì) 于我這個(gè)從不玩網(wǎng)游的人來(lái)說(shuō),誘惑是有的。里面沒(méi)有炫酷的技能、華美的服...
    撕裂一席微涼閱讀 258評(píng)論 1 1
  • “擁有你就擁有全世界” 然而我沒(méi)有全世界。 所以就算這么甜,單曲循環(huán)了這么多遍,還是聽(tīng)著很悲傷。
    Dedivin閱讀 202評(píng)論 0 0
  • 今天是8月1日,是建軍節(jié)。對(duì)于廣州新高三學(xué)生而言,今天,高三生活開(kāi)始了。 對(duì)于這些學(xué)生,我相信,他們絕大多數(shù)會(huì)既緊...
    杜世龍閱讀 710評(píng)論 0 0

友情鏈接更多精彩內(nèi)容