简单介绍
从图可以看出来,ViewModel 与 LiveData 和 Paging 是谷歌新组件,同时它是 android.arch.lifecycle 包里面的类,可以支持 activity 和 fragment 共享数据(比如在 fragment 获取 activity 搜索框的内容)当然 activity 销毁了数据就不存在了;又或者是 fragment 与子 fragment 共享数据(比如 fragment 里面嵌套了 viewpager , viewpager 里又有 fragemnt)。
使用方法
//build.gralde
implementation 'android.arch.lifecycle:extensions:1.1.1' //包括了 viewmodel 和 livedata
implementation 'android.arch.lifecycle:compiler:1.1.1'
implementation 'android.arch.lifecycle:common-java8:1.1.1'
创建一个类传字符串,然后在 activity 实例化并且赋值。
//KeywordModel.kt
class KeywordModel : ViewModel() {
var keyword: MutableLiveData? = MutableLiveData()
fun getKeyWord(): LiveData {
return keyword!!
}
fun setKeyWord(key: String) {
keyword?.value = key
}
}
//MainActivity.kt
val keywordModel=ViewModelProviders.of(this).get(KeywordModel::class.java) //在activity实例化
keywordModel.setKeyWord("siri") //赋值
在fragment 获取值
//ExampleFragment.kt
val keywordModel = ViewModelProviders.of(activity as MainActivity).get(KeywordModel::class.java)
keywordModel.getKeyWord().observe(this, Observer {
mPresenter.requestArticleList(requireNotNull(it), true)
})
以上就完成了 ViewModel 的基本使用了。
源码分析
在分析源码之前,应该思考一下,如果这个功能由你来写,你会是怎么实现,用什么数据结构去存数据,然后根据这个功能,可以拓展出什么其他用途。
首先看创建方法。ViewModelProviders 的 of 方法可以传入 fragment 或者是 activity,就是说你可以在fragment 或者 activity 创建 viewmodel,而这个 viewmodel 只会依赖你的创建的 activity 或者是 fragment(都是同一个viewmodel)。我们先来分析 传入参数是 activity 的这种情况。
//ViewModelProviders.java
public static ViewModelProvider of(@NonNull FragmentActivity activity) {
return of(activity, null);
}
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);
}
调用了两个参数的 of 方法,在 of 方法里面,通过 activity 来获取 applicaiton 从而来创建默认的 AndroidViewModelFactory 工厂。
这个工厂是 ViewModelProvider 的静态内部类。主作用是同是通过反射来获取 viewmodel
//AndroidViewModelFactory.java
public T create(@NonNull Class modelClass) {
if (AndroidViewModel.class.isAssignableFrom(modelClass)) {
try {
return modelClass.getConstructor(Application.class).newInstance(mApplication);
} catch (Exception e) {
throw new RuntimeException("", e);
}
}
return super.create(modelClass);
}
还有另外一个参数 ViewModelStores.of(activity),判断了当前activity有没有实现 ViewModelStoreOwner 接口,而我们没实现,就下一步吧。调用了 HolderFragment 的 holderFragmentFor 来创建一个 holderFragment, 添加到 activity 上(当然这个fragment 没界面),而这个 fragment 上有 mViewModelStore 的实例。
//ViewModelStores.java
public static ViewModelStore of(@NonNull FragmentActivity activity) {
if (activity instanceof ViewModelStoreOwner) {
return ((ViewModelStoreOwner) activity).getViewModelStore();
}
return holderFragmentFor(activity).getViewModelStore();
}
而在 ViewModelStore 里面有 hashmap ,通过 key 获取存储 viewmodel 。所以 viewmodel 使用了hashmap来存储 viewmodel 啦。
//ViewModelStore.java
public class ViewModelStore {
private final HashMap mMap = new HashMap<>();
final void put(String key, ViewModel viewModel) {
ViewModel oldViewModel = mMap.put(key, viewModel);
if (oldViewModel != null) {
oldViewModel.onCleared();
}
}
final ViewModel get(String key) {
return mMap.get(key);
}
public final void clear() {
for (ViewModel vm : mMap.values()) {
vm.onCleared();
}
mMap.clear();
}
}
而看回 ViewModelProvider 这个类,通过get方法来获取viewmodel,从下面的的 get 方法可以看到 hashmap 的 key 是由DEFAULT_KEY 前缀和的 viewmodel 的 canonicalName 来组成。并且get的时候 会先从hashmah 中获取viewmodel ,不存在这个viewmodel,再从 mFactory 里面创建 viewmodel ,并存进 hashmap。
//ViewModelProvider.java
public T get(@NonNull Class 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);
}
public T get(@NonNull String key, @NonNull Class 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;
}
同理
当viewmodelproviders.of 传入fragment时,也会走上面的流程,只不过生成holderfragment的时候用getChildFragmentManager()
//HolderFragment.java
HolderFragment holderFragmentFor(Fragment parentFragment) {
FragmentManager fm = parentFragment.getChildFragmentManager();
HolderFragment holder = findHolderFragment(fm);
if (holder != null) {
return holder;
}
holder = mNotCommittedFragmentHolders.get(parentFragment);
if (holder != null) {
return holder;
}
parentFragment.getFragmentManager()
.registerFragmentLifecycleCallbacks(mParentDestroyedCallback, false);
holder = createHolderFragment(fm);
mNotCommittedFragmentHolders.put(parentFragment, holder);
return holder;
}
小总结
- ViewModel 是从 ViewModelproviders 通过 viewmodelandroidfactory 工厂 和 holderfragment 获取到一个 viewmodelprovider ,调用viewmodelprovider 的 get 方法从 hashmap 获取对用的 viewmodel。 管理 hashmap 的ViewModelStore 在 holderfragment 里面,而这个holderfragment为什么不会随着 activity 的重建而不销毁呢,这是因为对应的 holderfragment 设置了setRetainInstance(true)。不会随着重建 activity 而销毁。
- 可以创建多个 viewmodel,而 activity 和 fragment 中 holderfragment 只有一个。
ps:在 RxPermissions 中也用到setRetainInstance这个属性。
我的博客即将搬运同步至腾讯云+社区,邀请大家一同入驻:https://cloud.tencent.com/developer/support-plan?invite_code=1ymbwcwa3fdws
2018年08月27日09:22:29更新
ViewModel 存储 Activity Fragment View 等实例时,会因为 Activity 或者 Fragment 的销毁
造成内存泄漏,所以 ViewModel 不可以存储 Activity Fragment View 等实例。