So I have a ListView with an empty list catch in the XML. It works fine. I set the TextView on the ID to be the empty list for different cases, so I need to be able to programatically change that text.

<ListView
    android:id="@android:id/list"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
/>
<TextView android:id="@android:id/empty"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/no_data"
/>

I would like to have something like this but it won't work:

TextView empty = (TextView)listing.findViewById(android.R.id.empty);
empty.setText(R.string.no_display_data);

Any ideas?

link|improve this question

does "empty.setText(R.string.no_display_data)" throw a NullPointerException? – Gallal Jul 9 '11 at 17:32
Yep, it sure does. It seems to not be able to find the native empty id. – Du3 Jul 9 '11 at 19:39
feedback

3 Answers

up vote 4 down vote accepted

Assuming you are in a ListActivity, do

TextView empty = getListView().getEmptyView();
empty.setText(R.string.no_display_data);

you can also possibly do

TextView empty = (TextView)listing.findViewById(R.id.empty); //remove android
empty.setText(R.string.no_display_data);
link|improve this answer
not sure about the second one – Gallal Jul 9 '11 at 21:24
1  
You rock... The first was right: TextView empty = getListView().getEmptyView(); empty.setText(R.string.no_display_data); – Du3 Jul 10 '11 at 11:46
feedback

I usually set the visibility of the list to View.INVISIBLE when it has no content. And when there is content it is set to View.VISIBLE (through the .setVisibility(int)-method).

See the Android reference.

link|improve this answer
That is one way, but I am looking for a way to just change text. – Du3 Jul 9 '11 at 13:38
This way works nicely when you have a custom adapter and views. – adamonduty Aug 13 '11 at 20:29
feedback

Sorry - I misread the actual question. The answer is still somewhat useful though - it stays for now.

You need to make a change to the ID-declaration in your XML. To something on the form "@+id/empty" then you'll be able to use the second code snippet you provided.

UPDATE: You should call the .setEmptyView(View)-method on you ListView to enable the magic.

link|improve this answer
I agree, but then I need to manually handle the hide/show of the textview. I was looking for a solution to use the magic of listview. Thanks though, was relevant idea. – Du3 Jul 9 '11 at 19:40
Maybe you need to call the .setEmptyView-method? – mbanzon Jul 9 '11 at 19:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.