When using the TextView to display the title, if the title is too long, we do not want its line-breaking display, this time we need its automatic truncation, the more than the portion is displayed as an ellipsis.
As shown, the title is too long, the line is automatically wrapped, the display is not very good looking.
At this point we need its automatic truncation, and the excess part is shown as an ellipsis.
The following properties of the TextView are required in the XML layout:
Android:ellipsize= "End" android:singleline= "true"
which
Android:ellipsize= "End"--ellipsis appears at the end
Android:ellipsize= "Middle"--ellipsis appears in the middle "
Android:ellipsize= "Marquee" – displayed in horizontal scrolling mode (when the current focus is needed)
How long TextView Android text is automatically truncated and displayed as an ellipsis