Archie.bpgc
Archie.bpgc

Reputation: 24012

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 divider even after the last item

i tried this:

android:footerDividersEnabled="true"

in my listview. But it didnt work

Thank You

Upvotes: 4

Views: 9578

Answers (2)

NagarjunaReddy
NagarjunaReddy

Reputation: 8645

Horizontal line

<View
android:id="@+id/view"
android:background="#FF4500"
android:layout_width="fill_parent"
android:layout_height="2dp"     
android:layout_below="@+id/listview_id" />

vertical line

 <View
android:id="@+id/view"
android:background="#FF4500"
android:layout_width="2dp"
android:layout_height="fill_parent"     />

Upvotes: 8

Chintan Raghwani
Chintan Raghwani

Reputation: 3370

Try following in XML

<View
    android:background="#00ff00"
    android:layout_width="fill_parent"
    android:layout_height="3dp"
    android:layout_alignParentLeft="true"
    android:layout_alignParentRight="true"
    android:layout_below="@+id/YOUR_LIST_ID" />

Upvotes: 11

Related Questions