我在XML中有一个带有空列表catch的ListView,它运行正常。如何切换ListView空文本?
这是我的XML代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/empty"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/emptyList" />
<ListView
android:id="@+id/list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
</LinearLayout>
我没有使用ListActivity。有可能这样做吗?
答案 0 :(得分:0)
您只需要使用setEmptyView(View v)
:
person_ListView.setEmptyView(root.findViewById(R.id.empty));
offtopic :ListActivity
也在使用此方法,但使用android.R.id.empty
。