2
votes
3answers
115 views

Android: What's the default value of android:dividerHeight for a listview

Simple question: What is the default value of android:dividerHeight for a normal listview? I bet you can probably look it up somewhere, but I wouldn't know where. Thanks in advance!
0
votes
2answers
107 views

Android: remove divider of some listitems in listview

I've created a listview with a BaseAdapter. I want some of the listitems to have a divider, but from some of the listitems, I want to remove the divider. I know you can remove the divider of the whole ...
0
votes
1answer
208 views

Android - only the last item shows in layer-list

I'm trying to style the divider for ListView. What I want is just 2 simple horizontal lines. list.xml <ListView android:layout_width="match_parent" android:layout_height="wrap_content" ...
1
vote
2answers
2k views

Setting different divider color to each element in list view

I want to have a list with different dividers between the list elements. I have used this code to define a white divider with height 1: _listView.setDivider(new ColorDrawable(Color.WHITE)); ...
0
votes
2answers
858 views

Android ExpandableListView divider is invisible

I am having the following ExpandableListView: <ExpandableListView android:layout_width="fill_parent" android:layout_height="fill_parent" ...
2
votes
2answers
2k views

Show divider after the last item in the list

I added a divider drawable to my listview but it appears for all the items except after the last item. I only have 5 items on the list, so its all white space after the last item, i want to have a ...
3
votes
4answers
2k views

Listview divider margin

I'm trying to set a margin to a listview divider. The divider is a dashed line: <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" ...
0
votes
1answer
413 views

Android ListView - divider that covers items

How to set divider in ListView to partialy cover items above and below? Hm, more info: I have drawable with transparent background and I want that drawable to be drawn on divider's upper and lower ...
13
votes
2answers
1k views

Empty space between listview header and first item

I've created an android application with a ListView. I've added both a header and footer to the list. But when adding a divider/separator it also creates an empty space between the header and the ...
1
vote
0answers
326 views

ListView dividers don't appear with cells background

I have a custom ListView and I want to display thin gradient dividers between my cells. Here is the XML of my ListView <ListView android:id="@+id/fil" android:layout_width="fill_parent" ...
10
votes
3answers
7k views

Hiding ListView Header / Hiding Single Divider in a List

I found this Hide footer view in ListView?. As Yoni poited out correctly, you can hide a header in a ListView by wrapping it into a FrameLayout and setVisibility() of the inner View to View.GONE. This ...
6
votes
1answer
8k views

Changing a divider with setDivider in a ListActivity without a custom ListView?

I can't seem to get a customized divider, using a Drawable I've defined, to work when using a ListActivity and not creating a custom ListView. It almost seems like when the VM creates its own ...
2
votes
3answers
2k views

How to make divider part of each item in listview in android?

I wanted to change the divider height dynamically. From whatever I have searched it seems that it is possible through setting divider as part of each item in listview. But I am not very clear with ...
3
votes
4answers
10k views

How to generate a ListView with headers above some sections?

I want to generate a Listview that has some dividers between some of the entries, like it can be seen in some of the property sections. See the example below. I try to generate a List that consists of ...