Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a fixed height listview it has divider between list item, but it also displays divider after last list item.

Is there a way to not display divider after the last item in listview?

share|improve this question

2 Answers

up vote 57 down vote accepted

Just add android:footerDividersEnabled="false" to your ListView description

share|improve this answer
This is the right solution. – Artem Russakovskii Jun 16 '11 at 23:04

meh i can't comment, but if you want to do this by code it's:

listView.setFooterDividersEnabled(false);

and if you're using a ListFragment you can get the listview by:

listFragment.getListView().setFooterDividersEnabled(false);

Only commented because this comes up as #1 in google

share|improve this answer
Thank you for the code - I get sad when there are only XML based solutions! I am porting an app from iOS to Android, and so far I think doing this all in code was much faster than if I had of tried converting it all into XML based layout (as I defined all the iOS UI in code in the first place). I suppose one day I'll have to get my head around all this XML stuff, but not today :) – Herr Grumps Oct 29 '12 at 11:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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