LoginSignup
1
1

More than 1 year has passed since last update.

UIでEditTextに入れた値がMutableLiveDataに反映されない

Last updated at Posted at 2019-04-28

やりたかったこと

価格をEditTextで入力して、BindさせたMutableLiveDataへ値を反映させたかった。

なぜ反映されなかったか

EditTextのandroid:textにMutableLiveDataを記載するがパターンが2つある。

  • 一方通行
  • 双方向

どうしたか

以下のように記載を修正した。

android:text="@={MutableLiveData}"

以下のように記載すると一方通行(LiveData->EditText)。

android:text="@{MutableLiveData}"

"="の有無でだいぶ変わるんですね…

1
1
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
1
1