2

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 show some text and doesn't append with ...

please help

user790156
  • 2,718
  • 5
  • 20
  • 20

1 Answers1

2

Check this out ... Add the scrollHorizontally element also.

Community
  • 1
  • 1
BonanzaDriver
  • 6,411
  • 5
  • 32
  • 35