タグ付けされた質問 「mutablelivedata」

7
MutableLiveDataのsetValue()とpostValue()の違い
の値を変更するには、2つの方法がありますMutableLiveData。しかし、違いは何ですsetValue()&postValue()ではMutableLiveData。 同じドキュメントは見つかりませんでした。 こちらがMutableLiveDataAndroidのクラスです。 package android.arch.lifecycle; /** * {@link LiveData} which publicly exposes {@link #setValue(T)} and {@link #postValue(T)} method. * * @param <T> The type of data hold by this instance */ @SuppressWarnings("WeakerAccess") public class MutableLiveData<T> extends LiveData<T> { @Override public void postValue(T value) { super.postValue(value); } @Override public void setValue(T …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.