1
當我篩選列表時,是否有任何方式顯示消息,如「沒有結果」?如果過濾的列表視圖不再包含任何結果,如何顯示特殊消息?
當我篩選列表時,是否有任何方式顯示消息,如「沒有結果」?如果過濾的列表視圖不再包含任何結果,如何顯示特殊消息?
簡單。在列表視圖旁邊添加此文字視圖:
<TextView android:id="@id/android:empty"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/empty_list_message"/>
ID很重要; ListActivity會查找它。
Emmanuel