0
Q:

ellipsize in android

 <TextView
       ....
       android:text="Hi I am Amiyo,you can see how to ellipse works."
       android:ellipsize = "end"  
   />
2
Example :

<TextView
       ....
       android:text="aaabbbccc"
       android:singleLine = "true"
       android:ellipsize = "end"  
   />

Say original value pf text view is aaabbbccc and its fitting inside the view

start's output will be : ...bccc

end's output will be : aaab...

middle's output will be : aa...cc

marquee's output will be : aaabbbccc auto sliding from right to left
0

New to Communities?

Join the community