Estoy configurando un TextView
con el id @android:id/empty
para mostrar un mensaje cuando no hay elementos en el ListView
. Sin embargo, este TextView
aparece incluso si hay elementos en el ListView
, justo antes de que aparezcan los elementos.Android que muestra texto cuando ListView está vacío
¿Cómo puedo hacer que solo se muestre cuando no hay elementos en el ListView
?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ListView
android:id="@android:id/list"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:dividerHeight="1dp" >
</ListView>
<TextView
android:id="@android:id/empty"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/empty_list" />
</LinearLayout>
PS: Estoy usando un Loader
y una SimpleCursorAdapter
con un ListFragment
.
Sólo hay que establecer la visibilidad TextView ido inicialmente !!Si listview tiene algunos datos, establezca la visibilidad visible y establezca un texto programáticamente – Rashiq