在 TextView 控件中,我可以设置 android:singleLine="true" 和 android:ellipsize="end" 来截断一个长字符串,但是我不知道如何设置 ListView 控件的属性,你能帮我吗?谢谢!
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:background="#DDDDDD"
android:layout_weight="1" />
<TextView
android:id="@+id/textView5"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ellipsize="end"
android:singleLine="true"
android:text="This is a web This is a web This is a web This is a web I will go to school" />