The following code is defining user.firstName to EditText by two-way binding approach.
<EditText android:text="@={user.firstName}" .../>
Is there anyway how to set user.firstName to EditText in Java Code programmatically by two way binding approach.
For example;
editText.setTextbyTwoWay(user.fisrtName);
P.S: I forgot to describe the EditText is created programmatically in Java Code. That's why I have to define Text value to this EditText in Java Code for two-way binding.
ObservableField