How to show long text only show 1 lines and append with
How to show long text only show 1 lines and append with ....
I try
<TextView
android:id="@+id/txtTitle"
android:text="testqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq"
android:textStyle="bold"
android:gravity="center"
android:maxLines="1"
android:lines="1"
android:ellipsize="end"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:textSize="20dp"
android:textColor="#545454"/>
but it sh开发者_C百科ow some text and doesn't append with ...
please help
Check this out ... Add the scrollHorizontally element also.
精彩评论