Оправданный TextView показывает широкие промежутки между словами - PullRequest
0 голосов
/ 24 марта 2020

Когда я оправдал TextView, он показывает большие промежутки между текстом.

<androidx.appcompat.widget.AppCompatTextView
            android:id="@+id/snackbarMessage"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="@dimen/spacing_double"
            android:gravity="center"
            android:layout_marginRight="@dimen/spacing_triple"
            android:layout_marginLeft="@dimen/spacing_triple"
            android:layout_marginBottom="@dimen/spacing_single"
            android:layout_marginStart="@dimen/spacing_quadruple"
            android:layout_marginEnd="@dimen/spacing_quadruple"
            android:layout_below="@+id/topContainer"
            android:fontFamily="@font/roboto_regular"
            android:text=""
            android:justificationMode="inter_word"
            android:textColor="@color/message_body_text"
            android:textSize="@dimen/material_text_body"
            />

Любое решение?

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...