Android MVVM 解读 3. Android MVVM 介绍(3) ViewModel

2.4 ViewModel

官方介绍 ViewModel Overview

Saving UI States

ViewModels: Persistence, onSaveInstanceState(), Restoring UI State and Loaders

Saved State module for ViewModel

2.4.1 理解

1. 官方解释

  1. 此类设计出来,是用于与存储和管理UI相关的数据; 并且允许数据正在configuration changes 例如屏幕旋转时,数据不改变;
  2. UI控制器需要管理异步的请求, 保证系统会在他们销毁时,及时清理他们,避免潜在的内存泄漏,这种管理是需要很多的维护工作, 例如在configuration change时,对象会涉及到重建, 但是这样是浪费系统的资源的, 因为对象可能不得不重新发出他已经发出的调用

2. 个人理解

  1. ViewModel是AMS系统级别支持的对象, 在ui经历 configuration changes 或者onSaveInstanceState时, ViewModel 有比较友好的功能, 能够方便在内存级别恢复ViewModel
  2. ViewModel 从事的是与UI相关的逻辑, 而具体的有关数据存储层和缓存的操作,需要在Model层,即安卓推荐的Repository的层面实现

3. Demo

Implement a ViewModel

The lifecycle of a ViewModel

Share data between fragments

2.4.2 类图

android-mvvm-viewmodel.png

相关的类介绍

根据在MVVM常用的Demo中的用法,从ViewModelProviders中,通过参数Factory和当前的ui对象,Activity或者Fragment,获取到ViewModelProvider, Factory用于构造ViewModel,而ViewModelStore是用于存储ViewModel的对象,在onConfigurationChange时, 是可以从当前的Fragment或者Activity中直接恢复的.

mViewModel = ViewModelProviders.of(this).get(ScoreViewModel.class);

这行代码,便是获取ViewModel的常用方法, 我们查看源码,便可以看到相关的类和逻辑

查看前,可以先看下这个序列图

MVVM ViewModel Sequence.png

1. ViewModelProviders.of(FragmentActivity activity)源码

/**
 * Creates a {@link ViewModelProvider}, which retains ViewModels while a scope of given Activity
 * is alive. More detailed explanation is in {@link ViewModel}.
 * <p>
 * It uses {@link ViewModelProvider.AndroidViewModelFactory} to instantiate new ViewModels.
 *
 * @param activity an activity, in whose scope ViewModels should be retained
 * @return a ViewModelProvider instance
 */
@NonNull
@MainThread
public static ViewModelProvider of(@NonNull FragmentActivity activity) {
    return of(activity, null);
}

/**
 * Creates a {@link ViewModelProvider}, which retains ViewModels while a scope of given Activity
 * is alive. More detailed explanation is in {@link ViewModel}.
 * <p>
 * It uses the given {@link Factory} to instantiate new ViewModels.
 *
 * @param activity an activity, in whose scope ViewModels should be retained
 * @param factory  a {@code Factory} to instantiate new ViewModels
 * @return a ViewModelProvider instance
 */
@NonNull
@MainThread
public static ViewModelProvider of(@NonNull FragmentActivity activity,
        @Nullable Factory factory) {
    Application application = checkApplication(activity);
    if (factory == null) {
        factory = ViewModelProvider.AndroidViewModelFactory.getInstance(application);
    }
    return new ViewModelProvider(ViewModelStores.of(activity), factory);
}

ViewModelProviders 是一个工具类, 用于方便开发者构建相关的ViewModelProvider,ViewMode在构建时,有两个关键的参数, Factory和ViewModelStores, ViewModelStores用于存储, Factory用于在首次构建时,没有的情况下,生产ViewModel

ViewModelStores的设计思路与ViewModelProviders的设计思路一样, 一个工具类

2. ViewModelProviders.of(@NonNull FragmentActivity activity)

/**
* Returns the {@link ViewModelStore} of the given activity.
*
* @param activity an activity whose {@code ViewModelStore} is requested
* @return a {@code ViewModelStore}
*/
@NonNull
@MainThread
public static ViewModelStore of(@NonNull FragmentActivity activity) {
if (activity instanceof ViewModelStoreOwner) {
    return ((ViewModelStoreOwner) activity).getViewModelStore();
}
return holderFragmentFor(activity).getViewModelStore();
}

正常来讲, Activity/Fragment会作为ViewModelStoreOwner, 在Activity/Fragment中持有这个ViewModelStore,这样ViewModelStore和Activity绑定在一起了.Activity有特殊的处理,针对onConfigurationChange时, activityManagerService会存储这个信息,然后再次分发给Activity.onCreate.便重新恢复了ViewModelStore.

3. ViewModelProvider.get(@NonNull Class<T> modelClass)

 /**
* Returns an existing ViewModel or creates a new one in the scope (usually, a fragment or
* an activity), associated with this {@code ViewModelProvider}.
* <p>
* The created ViewModel is associated with the given scope and will be retained
* as long as the scope is alive (e.g. if it is an activity, until it is
* finished or process is killed).
*
* @param modelClass The class of the ViewModel to create an instance of it if it is not
*                   present.
* @param <T>        The type parameter for the ViewModel.
* @return A ViewModel that is an instance of the given type {@code T}.
*/
@NonNull
@MainThread
public <T extends ViewModel> T get(@NonNull Class<T> modelClass) {
String canonicalName = modelClass.getCanonicalName();
if (canonicalName == null) {
    throw new IllegalArgumentException("Local and anonymous classes can not be ViewModels");
}
return get(DEFAULT_KEY + ":" + canonicalName, modelClass);
}

/**
* Returns an existing ViewModel or creates a new one in the scope (usually, a fragment or
* an activity), associated with this {@code ViewModelProvider}.
* <p>
* The created ViewModel is associated with the given scope and will be retained
* as long as the scope is alive (e.g. if it is an activity, until it is
* finished or process is killed).
*
* @param key        The key to use to identify the ViewModel.
* @param modelClass The class of the ViewModel to create an instance of it if it is not
*                   present.
* @param <T>        The type parameter for the ViewModel.
* @return A ViewModel that is an instance of the given type {@code T}.
*/
@NonNull
@MainThread
public <T extends ViewModel> T get(@NonNull String key, @NonNull Class<T> modelClass) {
ViewModel viewModel = mViewModelStore.get(key);

if (modelClass.isInstance(viewModel)) {
    //noinspection unchecked
    return (T) viewModel;
} else {
    //noinspection StatementWithEmptyBody
    if (viewModel != null) {
        // TODO: log a warning.
    }
}

viewModel = mFactory.create(modelClass);
mViewModelStore.put(key, viewModel);
//noinspection unchecked
return (T) viewModel;
}

首次ViewModel的查找,会从ViewModelStore中查找,如果存在,便直接返回, 如果不存在,通过Factory生成.Factory默认是通过反射生成的.这个Factory可继承,然后不使用反射,而是用普通的new的方法构造.

2.4.3 总结

ViewModel的作用.

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

推荐阅读更多精彩内容