使用场景:
TextView设置最多显示8个字符,超过部分显示...(省略号),
<TextView
android:id="@+id/tv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:maxEms="8"
android:singleLine="true"
android:ellipsize="end" />
经过测试、使用发现如果你打出8个字符的话不会出现省略号,打出9个字符才会出现省略号,
因此如果我们需要最多显示8个字符的话,则应该