I have a fixed width TextView 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 looks like this:
|Health Dep-| | artment |
... Although I want it to be:
| Health | |Department|
What XML attribute can I use for this?
source share