Easy. Next to the list view, add this text view:
<TextView android:id="@id/android:empty"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/empty_list_message"/>
The identifier is important; ListActivity will search for it.
Emmanuel
source
share