KeyPress 不适用于密码编辑文本类型

KeyPress doesn't wokr for password EditText types

为什么此代码在 Xamarin.Android 上不起作用?如果键入密码字段,它会更改按钮的 enable 属性。

        EditText edit_user_001 = FindViewById<EditText>(Resource.Id.id_edit_user_001);
        EditText edit_password_001 = FindViewById<EditText>(Resource.Id.id_edit_password_001);
        Button btn_login_001 = FindViewById<Button>(Resource.Id.id_btn_login_001);

        edit_password_001.KeyPress += (sender, e) => {
            if (edit_user_001.Text.ToString().Equals("") | edit_password_001.Text.ToString().Equals("")){
                btn_login_001.Enabled = false;
            } else {
                btn_login_001.Enabled = true;
            }
        };

这是.xml:

    <TextView
        android:id="@+id/id_txt_user_001"
        android:text="@string/txt_user_001"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>
    <EditText
        android:id="@+id/id_edit_user_001"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginBottom="10.0dp"
        android:inputType="text"/>
    <TextView
        android:text="@string/txt_password_001"
        android:id="@+id/id_txt_password_001"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>
    <EditText
        android:id="@+id/id_edit_password_001"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginBottom="10.0dp"
        android:inputType="textPassword"/>

android:inputType="textPassword 造成冲突。如果我更改 android:inputType="text 它工作正常。有替代方案或解决方案吗?

android:inputType="textPassword creates conflict. If I changes for android:inputType="text it works fine. Is there and alternative or a solution?

是的,我在设置 EditText 时遇到同样的 KeyPress 问题 android:inputType="textPassword"。 您可以使用 TextChanged 方法来达到相同的效果。

 private void Password_TextChanged(object sender, Android.Text.TextChangedEventArgs e)
    {
        if (username.Text.Equals("") || password.Text.Equals(""))
        {
            button.Enabled = false;
        }
        else
        {
            button.Enabled = true;
        }
    }