(com.google.android.material.textfield.TextInputEditText) Текст не корректно корректируется в API 28 - PullRequest
0 голосов
/ 05 марта 2019
  <com.google.android.material.textfield.TextInputLayout
    android:id="@+id/material_text_input_layout"
    android:layout_width="0dp"
    android:layout_weight="5"
    android:layout_height="wrap_content"
    android:layout_marginStart="12dp"
    style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox">

    <com.google.android.material.textfield.TextInputEditText
        android:id="@+id/material_input_edit_text"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:minHeight="70dp"
        android:layout_marginStart="8dp"
        android:hint="@string/enter_task_hint"/>

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

Перед добавлением поля enter image description here

Первый символ не отображается четко.

После добавления поля начинается: enter image description here

Текст выходит за границу ввода текста.

1 Ответ

0 голосов
/ 05 марта 2019

Используйте android:maxLength="12" в вашем textInputEditText:

 <com.google.android.material.textfield.TextInputEditText
            android:id="@+id/material_input_edit_text"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:minHeight="70dp"
            android:layout_marginStart="8dp"
            android:hint="@string/enter_task_hint"
            android:maxLength="12"
            />

Например, 12 или любое другое число.

...