我正在使用 ListView,但它无法正常工作。请看我的代码。
<LinearLayout
android:id="@+id/playerlist"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ListView
android:id="@+id/plist"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<TextView
android:id="@id/android:empty"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="NO DATA" />
</LinearLayout>
好吧,如果列表为空,它会很好地工作。
但由于列表很短,您可以在 ListView 下方看到“NO DATA”。
如果将 ListView 的 layout_height 设置为 'fill_parent',则不会出现 'NO DATA'。
谁能帮我?