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