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

i used two listviews like this if my problem is one back line is coming inbetween two listviews.But i dont want that that balck line in betweem them.

share|improve this question
Do you have two separate ListViews showing different lists or do you mean you have a line between items in your ListView? – Dave Webb Dec 16 '09 at 13:03

2 Answers

To remove the separator between items in the same ListView, here is the solution:

getListView().setDivider(null);
getListView().setDividerHeight(0);

developer.android.com # ListView

Or, if you want to do it in XML:

android:divider="@null"
android:dividerHeight="0dp"
share|improve this answer
for some reason, setting it in the XML didn't work for me. had to set it in the code. – Jeffrey Blattman Aug 29 '12 at 17:20
Worked in XML for me. Should put in the <ListView></Listview>. Wonder why this was not accepted as the right answer. – zolio Jan 5 at 3:30
thanks bro!!!!! – krisDrOid Jan 30 at 13:48
android:showDividers="none" worked for me – moonlightdock Feb 25 at 9:55

Or in XML:

	android:divider="@drawable/list_item_divider"
	android:dividerHeight="1dp"

You can use a color for the drawable (e.g. #ff112233), but be aware, that pre-cupcake releases have a bug in which the color cannot be set. Instead a 9-patch or a image must be used..

share|improve this answer

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.