Try setting android:ellipsize to none for each TextView . See this attribute for more details.
From xml:
<TextView ... android:ellipsize="none" />
From the code:
TextView textView = new TextView(context); ... textView.setEllipsize(null);
source share