Android: Как отобразить суффикс-текст TextInputLayout по умолчанию? - PullRequest
0 голосов
/ 27 марта 2020

Я использую последнюю версию библиотеки android материалов дизайна (1.2.0-alpha05). Я добавил app: suffixText = "PlaceHolder" в TextInputLayout. Я хочу, чтобы suffixText отображался по умолчанию, но в настоящее время он виден только тогда, когда TextInputLayout получает фокус. Когда TextInputLayout теряет фокус, я не вижу SuffixText. Вот мой код -:

<com.google.android.material.textfield.TextInputLayout
android:id="@+id/textField"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
app:suffixText="PlaceHolder"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
android:hint="hint">

         <com.google.android.material.textfield.TextInputEditText android:layout_width="match_parent"
android:layout_height="wrap_content" />

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

When I am launching the Activity, I can't see suffix text of TextInputLayout

Only after clicking on TextInputEditText, I can see suffix text

Пожалуйста, дайте мне знать, как я могу отображать суффикс по умолчанию.

...