I think better than doing a carryover, you can do something better. Consider the following image.

I think green will be very suitable for your need. Just declare textviewas follows:
<TextView
android:id="@+id/yourUniqueID"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="15sp"
android:ellipsize="end" <!--THIS WILL DO FOR YOU-->
android:maxLines="1"
android:text="test"/>
source
share