Android 当 EditText 的输入类型为密码时,反馈 TextInputLayout 的内容描述不正确

Android talk back announcing incorrect content description for TextInputLayout when the the input type of EditText is password

我的 android 应用程序中有一个具有以下结构的 TextInputLayout。

<com.google.android.material.textfield.TextInputLayout
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toTopOf="parent">

    <EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:imeOptions="actionDone"
        android:id="@+id/mEdit"
        android:inputType="numberPassword"
        android:maxLength="4"
        android:singleLine="true"
        app:layout_constraintTop_toTopOf="parent" />

</com.google.android.material.textfield.TextInputLayout>

此处EditTextmaxLength4。然而,启用回话后,如果我们尝试在密码字段中编辑某些内容,回话会宣布内容描述,例如 Bullet, Maximum length reached 即使我们没有达到 EditTextmaxLength

提前感谢您的宝贵意见。

TextInputLayout 中使用 com.google.android.material.textfield.TextInputEditText 而不是使用 EditText