Question

I'am using XAMARIN with MVVMCross Framework.I was wondering if there is an easy way to perform TextChanged binding in an android editText control between view and viewmodel and vice versa. Thanks in advance.

Was it helpful?

Solution

Yes - TextChanged is used in almost all the N+1 video tutorials

e.g.:

An example two-way EditText binding is:

<EditText
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:textSize="40dp"
  local:MvxBind="Text FirstName"
  />
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top