Android-Architecture学习篇二:Mvp + Loaders

1 前言

Mvp模式学习之TODO-MVP-Loaders

It is based on theTODO-MVPsample and uses Loaders to get the data from the tasks repository.

基于Mvp模式基础TODO-MVP,使用Loaders用任务请求获取数据

2 基本结构

The advantages of Loaders, from theLoaders documentation page, are:

从Loaders文档上可以看出,Loaders的优点是:

They provide asynchronous loading of data, removing the need for callbacks in the repository.

Loaders提供异步加载数据,移除库repository中需要的请求回调。

They monitor the source of their data and deliver new results when the content changes, in our case, the repository.

Loaders会监视数据来源,根据数据内容的变化,提供最新的的结果。

They automatically reconnect to the last loader when being recreated after a configuration change.

当Loaders被重新改变配置后,会自动重新连接到最后一个加载程序。

3 Loaders实现目录结构

4 Loaders实现分析

The Loaders (TaskLoaderandTasksLoader) are responsible for fetching the data and extend AsyncTaskLoader.

TaskLoader和TasksLoader都是继承AsyncTaskLoader,负责取数据。

In src/data/source/TasksLoader.java:

@Override

publicListloadInBackground() {

      return mRepository.getTasks();

}

The results are received in the UI Thread, handled by the presenter.

在UI线程接收结果,用Presenter处理。

InTasksPresenter.java

Override

publicvoidonLoadFinished(Loader>loader,Listdata) {   

    mTasksView.setLoadingIndicator(false);  

    mCurrentTasks=data;if(mCurrentTasks==null) {       

      mTasksView.showLoadingTasksError(); 

    }else{       

       showFilteredTasks();  

   }

}

The presenter also triggers the loading of data, like in the MVP sample but in this case it does it through the LoaderManager:

Presenter也使用加载数据,就像在MVP例子里一样,但是它要通过LoaderManager来实现。

@Override

publicvoidstart() {   

    mLoaderManager.initLoader(TASKS_QUERY,null,this);

}

5 内容观察 Content observer 

After every content change in the repository,notifyContentObserver()is called.

当库中的内容变化的时候,notifyContentObserver()i会被调用。

In src/data/source/TasksRepository.java:   

@Override  

publicvoiddeleteTask(@NonNull StringtaskId) {

    mTasksRemoteDataSource.deleteTask(checkNotNull(taskId)); 

    mTasksLocalDataSource.deleteTask(checkNotNull(taskId)); 

    mCachedTasks.remove(taskId);

    // Update the UI

    notifyContentObserver();

}

This notifies the Loader which in this case simply forces a reload of data.

这个通知Loader,Loader在这种情况下,是一个简单的强制加载数据的Loader

In TasksLoader.java:

@Override

public void onTasksChanged() {

   if(isStarted()) { 

       forceLoad();  


    }

}

6 类的解释

Task:Immutable model class for a Task. 不可改变的Task模型

TasksDbHelper:Task数据帮助类

TasksLocalDataSource:Concrete implementation of a data source as a db. 作为数据库的数据源的具体实现。

TasksPersistenceContract:The contract used for the db to save the tasks locally. 用于保存tasks保存到本地数据库的Contract

TasksRemoteDataSource:Implementation of the data source that adds a latency simulating network.添加一个延迟模拟网络的数据源的实现。

TaskLoader:Custom {@link android.content.Loader} for a {@link Task}, using the {@link TasksRepository} as its source. This Loader is a {@link AsyncTaskLoader} so it queries the data asynchronously. Task 的自定义加载Loader,用TasksRepository当成根源。这个Loader是一个AsyncTaskLoader,所以查询数据是异步查询的。

TasksDataSource:Main entry point for accessing tasks data.访问任务数据的主要入口点。

For simplicity, only getTasks() and getTask() have callbacks. Consider adding callbacks to other methods to inform the user of network/database errors or successful operations.

为简单起见,只gettasks()和gettask()有回调。考虑添加回调函数等方法来通知用户网络/数据库错误或成功的行动。

For example, when a new task is created, it's synchronously stored in cache but usually every operation on database or network should be executed in a different thread.

例如,当一个新的任务被创建时,它的同步存储在缓存中,但通常在数据库或网络上的每一个操作都应该在不同的线程中执行。

TasksLoader:同TaskLoader

TasksRepository:Concrete implementation to load tasks from the data sources into a cache.具体实现从数据源加载到缓存中的任务。

For simplicity, this implements a dumb synchronisation between locally persisted data and data obtained from the server, by using the remote data source only if the local database doesn't exist or is empty.

为简单起见,这里实现了一个愚蠢的同步之间的局部坚持数据和数据从服务器获取,只如果本地数据库不存在或是空的使用远程数据源。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,332评论 5 475
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,930评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,204评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,348评论 1 272
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,356评论 5 363
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,447评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,862评论 3 394
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,516评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,710评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,518评论 2 318
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,582评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,295评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,848评论 3 306
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,881评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,121评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,737评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,280评论 2 341

推荐阅读更多精彩内容

  • 姑娘 别让婚姻成为你唯一的追求 因为即将过年的关系,陈西的相亲日程越来越重,从以前的每月一两次变成了每周一两次。 ...
    哎哟音乐阅读 201评论 0 0
  • 花期有谢日 哀柳明自知 只叹园中雨 下却无时停 可怜幽草岩上留 可恨清风吹又生 茶旧迟待桂糕慕 叶舟不闻两岸流 愿...
    臾止阅读 284评论 0 2