Create two-way binding with Android Data Binding

前端 未结 6 1333
情深已故
情深已故 2020-12-08 06:33

I have implemented the new Android data-binding, and after implementing realised that it does not support two-way binding. I have tried to solve this manually but I am strug

6条回答
  •  清歌不尽
    2020-12-08 06:58

    This is now supported in Android Studio 2.1+ when using the gradle plugin 2.1+

    Simply change the EditText's text attribute from @{} to @={} like this:

    
    

    for more info, see: https://halfthought.wordpress.com/2016/03/23/2-way-data-binding-on-android/

提交回复
热议问题