Text truncation - Android
On Android, you can avoid text truncation by removing all instances of android:maxLines
from your app. You should also avoid using fixed values for any heights or widths and instead use wrap_content
where possible.
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Avoid text truncation"
android:maxLines="REMOVE" />