There is a TextView that displays various small texts, so the font is large and the android attribute is set: singleLine = "true". But sometimes TextView shows texts a bit longer, and at the end of the text breaks off and put ellipsis (due to singleLine). Is it possible to somehow make the text appear all the same completely, but in a smaller font? Whether programmatically it is possible to somehow find out whether the text got completely, or is hidden behind ellipsis?
just in case my textview:
<TextView android:id="@+id/mytw" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_centerHorizontal="true" android:layout_marginLeft="20dp" android:layout_marginRight="20dp" android:gravity="center_horizontal" android:singleLine="true" android:text="" android:textAppearance="?android:attr/textAppearanceLarge" />