我在我的应用程序中使用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);
它显示为: