@Oleg9289

Как пофиксить многострочный EditText, чтобы он не показывал огрызки букв?

У меня 6-строчный EditText, когда верхняя строка должна скрыться из поля зрения, она скрывается не полностью и видны хвостики букв, выглядит некрасиво. Пробовал менять внешние и внутренние отступы - не помогает. Буду очень благодарен за помощь
<EditText
            android:id="@+id/chat_input"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_marginStart="12dp"
            android:layout_marginEnd="12dp"
            android:background="@android:color/transparent"
            android:cursorVisible="true"
            android:fadingEdge="vertical"
            android:filterTouchesWhenObscured="false"
            android:hint="@string/chat_input_hint"
            android:imeOptions="actionSend|flagNoExtractUi"
            android:inputType="textAutoCorrect|textCapSentences|textMultiLine"
            android:maxLines="6"
            android:paddingTop="8dp"
            android:scrollbars="vertical"
            app:layout_constraintBottom_toBottomOf="@id/button_emoticon"
            app:layout_constraintEnd_toStartOf="@id/button_attach"
            app:layout_constraintStart_toEndOf="@id/button_emoticon"
            app:layout_goneMarginEnd="52dp" />


6332cb85f25fa180614335.jpeg
  • Вопрос задан
  • 78 просмотров
Пригласить эксперта
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Войти через центр авторизации
Похожие вопросы