当利用textview显示内容时,显示内容过多可能会折行或显示不全,那样效果很不好。
实现如下:
<TextView android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/hello"
android:ellipsize="end"
android:singleLine="true"
/>