I have a TextView
with fixed width as follows:
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:textSize="12sp"
tools:text="Health Department"
android:layout_marginTop="4dp"
android:maxLines="2"
/>
... But it appears like:
|Health Dep-|
| artment |
... While I want it to be:
| Health |
|Department|
What XML attribute can I use to do this?
question from:
https://stackoverflow.com/questions/40853192/prevent-word-break-in-a-textview 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…