I want to show a empty message if one of my list fragment goes empty

688 Views Asked by At

The empty text is showing even if the list is available . I am tired finding the solution every where but nothing work for me

<?xml version="1.0" encoding="utf-8"?>
<com.cervo.222.view.ViewSwitcher xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/container"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<FrameLayout
    android:id="@+id/item_container"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >
    <TextView android:id="@android:id/empty"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="No Details found" />
</FrameLayout>
<FrameLayout
    android:id="@+id/view_container"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" />

</com.cervo.222.view.ViewSwitcher>
1

There are 1 best solutions below

4
On

Try something like this. Create 2 views. First view is a TextView with the empty list message . Keep this TextView hidden initially (Visibility GONE). Second view is your Listview. Keep it visible. IN your onCreate or any appropriate method is activity or Fragment when you find that there is no data for List then make your ListView hidden and TextView visible.