9
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【Android】MutableLiveDataとObservableFieldの違い

Last updated at Posted at 2019-04-16

DataBindingの際にどっちを使えばいいのかわからなくなって調べたときのメモです:angel:

MutableLiveDataの特徴

// こんなやつ
val animal = MutableLiveData<String>()

ActivityやFragmentのライフサイクルに応じて、ほぼ自動で購読管理をしてくれる。
→意図しないクラッシュ防ぐことができる

LiveData is an observable data holder class. Unlike a regular observable, LiveData is lifecycle-aware, meaning it respects the lifecycle of other app components, such as activities, fragments, or services.

公式ドキュメント#livedata

ObservableFieldの特徴

// こんなやつ
val animal = ObservableField<String>()

DataBindingをするときに使う。
ライフサイクルには対応しておらず、購読管理を自動ですることはできない。

違いについて

両方ともDataBindingに使えるオブジェクトですが、ActivityやFragmentのライフサイクルに対応することができるかどうかが大きな違いのようでした。

どちらを使うべきかはケースバイケースですが、基本的にはこれまで通りObservableFieldを使いつつ、ライフサイクルと蜜に連携する必要があるときにはMutableLiveDataを使おうかなと思っています。
 
Googleの公式ドキュメントでは

In Android Studio version 3.1 and higher, you can replace observable fields with LiveData objects in your data binding code.

のように、ObservableFieldMutableLiveDataに置き換えることができるよと言っているので、GoogleはLiveData推しなのかもしれません。

参考

android - ObservableField or LiveData? Which one is the best? - Stack Overflow
公式ドキュメント#livedata
LiveData について勘違いしていたことをいくつか - Qiita

9
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?