Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a ListView. The data behind it is fetched from the Internet, in sets of 10-30 items whenever the user scrolls all the way to the bottom. In order to indicate that it is loading more items, I used addFooterView() to add a simple view that displays a "Loading..." message and a spinner. Now, when I'm out of data (no more data to fetch), I want to hide that message. I tried to do:

loadingView.setVisibility(View.GONE);

Unfortunately, while that does hide the view, it leaves space for it. I.e. I end up with a big blank space where the "Loading" message used to be. How can I go about properly hiding this view?

I can't use removeFooterView() because I may need to show it again, in which case I can't call addFooterView() again because an adapter has already been set on the ListView, and you can't call addHeaderView() / addFooterView() after setting an adapter.

share|improve this question

7 Answers

up vote 38 down vote accepted

It seems that you are allowed to call addHeaderView() / addFooterView() after setAdapter() as long as you call one of those methods at least once before. That is a rather poor design decision from Google, so I filed an issue. Combine this with removeFooterView() and you have my solution.

+1 for the other two answers I got, they're valid (and arguably more correct) solutions. Mine, however, is the simplest, and I like simplicity, so I'll mark my own answer as accepted.

share|improve this answer
2  
This doesn't appear to work for Headers. I can add a footer after setAdapter, but not a header. – littleFluffyKitty Dec 14 '10 at 23:11
+1 for saving a HUGE headache. I wonder how long it would have taken me to figure out you had to add the footer before setting the adapter. (dumb) – hambonious May 10 '11 at 16:09
I've noticed that the scrolling position gets reset when you remove the bottom one, so when you're overscrolling -> footer is removed before you finish overscrolling, it jumps back to the end of the list. Did you run into this? – Vadi Apr 15 '12 at 5:00
Nevermind, I ran into the same issue as littleFluffyKitty did. Going to have to go with a custom adapter. – Vadi Apr 15 '12 at 21:48
Great answer, simple! +100 for filing the issues with Google. – Tomasz Jun 18 '12 at 17:31
show 1 more comment

Try setting the footer's height to 0px or 1px before hiding it. Alternatively, wrap the footer view in a wrap_content height FrameLayout and hide/show the inner view, leaving the FrameLayout visible; the height should wrap properly then.

share|improve this answer
How do you force set the height of the view? I tried setMinimumHeight(0); before hiding but doesn't seem to work. I've set it to GONE but the space of the cell is still left behind. – Maurice Dec 19 '11 at 2:11
The height and width are layout parameters, so you have to set the LayoutParameters object for the view with the new width/height. See this SO answer: stackoverflow.com/a/2767142/59058. Basically, width, height and margins are properties that really apply to the view's container, not the view itself, so you use a parent-linked LayoutParameter object to define them. – Yoni Samlan Dec 21 '11 at 16:40
I don't think that works for a header, I got null on a header that was attached and called getLayoutParams() for. – Vadi Apr 15 '12 at 22:55

The Droid-Fu library has a class designed for having a loading footer show and hide: ListAdapterWithProgress.

share|improve this answer

Used

footer.removeAllViews();

This does not remove footer but flushes children. You again have to repopulate children. Can check by

footer.getChildCount()<2
share|improve this answer

I also found that is possible call onContentChanged() (if you use ListActivity) to force recreate ListView if I need add HeaderView to them after setAdapter() call, but it is very ugly hack.

share|improve this answer

Yoni is right, but it'd be much simpler to just set the footer view's visibility to GONE.

share|improve this answer

when you want to remove the footer just call your listView.addFooterView(new View(yourContext)); it will add a dummy empty view which will not reserve any space

share|improve this answer
documentation says "If addFooterView is called more than once, the views will appear in the order they were added." – max4ever Jan 11 at 14:02

protected by Felix Sep 25 '12 at 9:11

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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