ellipsize in android

Solutions on MaxInterview for ellipsize in android by the best coders in the world

showing results for - "ellipsize in android"
Ethann
18 Nov 2019
1 <TextView
2       ....
3       android:text="Hi I am Amiyo,you can see how to ellipse works."
4       android:ellipsize = "end"  
5   />
Raphael
04 Apr 2020
1Example :
2
3<TextView
4       ....
5       android:text="aaabbbccc"
6       android:singleLine = "true"
7       android:ellipsize = "end"  
8   />
9
10Say original value pf text view is aaabbbccc and its fitting inside the view
11
12start's output will be : ...bccc
13
14end's output will be : aaab...
15
16middle's output will be : aa...cc
17
18marquee's output will be : aaabbbccc auto sliding from right to left
similar questions
queries leading to this page
ellipsize in android