Reputation: 21335
How do I set the border between listview items. I need to have specific color and width.
Upvotes: 6
Views: 15794
Reputation: 21939
see the below link Custom ListView
By using Custom ListView we can set the width and color for the listview
Upvotes: 1
Reputation: 5999
Check this.
android:divider
Drawable or color to draw between list items.
android:dividerHeight
Height of the divider.
http://developer.android.com/reference/android/widget/ListView.html
Upvotes: 27