android开发教程之textview内容超出屏幕宽度显示省略号

时间:2021-09-16 08:36:41

实现如下:

复制代码 代码如下:

<TextView android:layout_width="fill_parent"
                   android:layout_height="wrap_content"
                   android:id="@+id/hello"
                   android:ellipsize="end"
                   android:singleLine="true"
/>