1 <TextView
2 ....
3 android:text="Hi I am Amiyo,you can see how to ellipse works."
4 android:ellipsize = "end"
5 />
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