Как я могу заполнить все пространство текстом в Textview? - PullRequest
0 голосов
/ 03 июня 2018

эта ссылка показывает, что я хочу сделать.

http://webstyleguide.com/wsg3/figures/8-typography/8-7-650.jpg

Я хотел обосновать текст в TextView Спасибо!

И это мой TextView xml:

 <TextView
            android:id="@+id/myText"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginEnd="5dp"
            android:layout_marginLeft="5dp"
            android:layout_marginRight="5dp"
            android:layout_marginStart="5dp"
            android:layout_marginTop="8dp"
            android:singleLine="false"
            android:maxLines="999999999"
            android:scrollbars="vertical"
            android:textSize="18dp"
            android:lineSpacingExtra="5dp"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintHorizontal_bias="0.0"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toBottomOf="@+id/myTitle" />

Но я не могу заполнить все пространство TextView текстами.На самом деле я хочу удалить пустые строки в каждой строке и заполнить их текстами.

...