Как заставить андроид: расстановку переносовЧастота на работу - PullRequest
0 голосов
/ 08 января 2019

Я использую TextViews в своем приложении. Я установил атрибуты переноса и переноса слов, как показано в коде.

Я искал вверх и вниз, но не могу получить ответ. Любые советы приветствуются!

<TextView
    android:id="@+id/theText1"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:background="@android:color/white"

    android:breakStrategy="high_quality"
    android:hyphenationFrequency="full"

    android:paddingHorizontal="2dp"
    android:paddingVertical="2dp"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintVertical_bias="0.060000002" />

TextView theTextView1 = findViewById(R.id.theText1);
//inputText is a very long line that I won't post here
theTextView1 .setText(inputText);

это выглядит как:

https://www.examenvragen.nl/img/hyphen.png

...