Android ListView different divider images

android, listview

Solution

Why not have no divider images and make the divider part of the View for each item?

For example, at the top of the view you have a label and an icon and at the bottom you have your divider image.

Problem

In `ListView` I can change the divider image using `android:divider=image` but I want to display different divider images for different items how can I do that ?

Original source