9
4

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】ViewModel + LiveData + DataBinding + CustomView で変更を通知させる

Last updated at Posted at 2019-09-23

はじめに

DatabindingのViewModelに今まではずっとObservableFieldを使っていたのですが、LiveDataを使う+いきなりCustomViewにチャレンジしたら変更が通知されなくてハマったので対処法を書き記します。

Databinding × LiveData

ViewModelにObservableFieldだけを利用する場合との違いとして、LiveDataを利用する場合はbindingに対してsetLifecycleOwnerをする必要があります。

To use a LiveData object with your binding class, you need to specify a lifecycle owner to define the scope of the LiveData object.

https://developer.android.com/topic/libraries/data-binding/architecture
image.png

CustomView x Databinding x LiveData

しかし、Databindingを利用したCustomViewのViewModelでLiveDataを使いたい場合は、そのCustomViewを利用しているActivity / Fragmentでbinding.setLifecycleOwnerをしても変更が通知されませんでした。
どうやら、CustomView側でもsetLifecycleOwnerをする必要があるようです。

CustomView.kt
class CustomView(context: Context, attrs: AttributeSet? = null) : ConstraintLayout(context, attrs) {
    val binding = ViewCustomBinding.inflate(LayoutInflater.from(context), this, true).apply{
        lifecycleOwner = context as? LifecycleOwner
    }
}

こうすることで、ActivityまたはFragmentで利用しているViewであれば、LifecycleOwnerに紐付けられるようになります。

ちなみにsetLifecycleOwnerの引数はNullableなので、as?で問題ないです。
contextがLifecycleOwnerを実装していなかった場合は何も起きません。

(参考)ViewDatabinding.setLifecycleOwner
    /**
     * Sets the {@link LifecycleOwner} that should be used for observing changes of
     * LiveData in this binding. If a {@link LiveData} is in one of the binding expressions
     * and no LifecycleOwner is set, the LiveData will not be observed and updates to it
     * will not be propagated to the UI.
     *
     * @param lifecycleOwner The LifecycleOwner that should be used for observing changes of
     *                       LiveData in this binding.
     */
    @MainThread
    public void setLifecycleOwner(@Nullable LifecycleOwner lifecycleOwner) {
        if (mLifecycleOwner == lifecycleOwner) {
            return;
        }
        if (mLifecycleOwner != null) {
            mLifecycleOwner.getLifecycle().removeObserver(mOnStartListener);
        }
        mLifecycleOwner = lifecycleOwner;
        if (lifecycleOwner != null) {
            if (mOnStartListener == null) {
                mOnStartListener = new OnStartListener();
            }
            lifecycleOwner.getLifecycle().addObserver(mOnStartListener);
        }
        for (WeakListener<?> weakListener : mLocalFieldObservers) {
            if (weakListener != null) {
                weakListener.setLifecycleOwner(lifecycleOwner);
            }
        }
    }

最後に

あまりCustomViewでDatabindingって需要はないんだろうか。

9
4
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
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?