This example describes the Android Setup TextView display specifies a number of characters, more than part of the display ... (ellipsis) method. Share to everyone for your reference, specific as follows:
First, the question:
Today in the company encountered a demand; TextView settings display up to 8 characters, more than part of the display ... (ellipsis)
Second, the solution:
On the internet to find a lot of information, some people said that set the TextView android:signature= "true", and set android:ellipsize= "end"; but I tried, and did not succeed, and finally try out a way as follows: for your reference
<textview
android:id= "@+id/tv"
android:layout_width= wrap_content "android:layout_height=" Wrap_
Content "
android:maxems="
android:singleline= "true"
android:ellipsize= "End"
/>
That is, the function is implemented by combining Android:maxems with the Android:singleline attribute.
More interested readers of Android-related content can view this site: "Introduction to Android Development and advanced Course", "Android Service Component Usage Summary", "Android Basic component Usage Summary" and "Android Control usage Summary"
I hope this article will help you with the Android program.