在下面的布局中,我希望拥有EditText的当前值“ android:text”,以用作Button UI中的CommandParameter。
我知道要使用MvxBind传递参数,应该使用CommandParameter属性。
但是,我的问题是,如何将值从同一Layout文件中的另一个UI组件传递到CommandParameter。
注意:我有3个EditText,我想将它们的值传递给CommandParamter
布局:
<EditText
android:id="@+id/loginView_editText_passwort"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/edittext_margin_start"
android:hint="@string/login_screen_passwort_hint"
android:inputType="textPassword"
style="@style/edit_text_style"/>
<Button
android:id="@+id/loginView_button_login"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/button_margin_top"
android:text="@string/login_screen_button_text"
local:MvxBind="Click OnLoginButtonClicked,
CommandParameter=?????"/>