I want to change color of ListView separator line. Any help would be appreciated.
ListView
Or you can code it:
int[] colors = {0, 0xFFFF0000, 0}; // red for the example myList.setDivider(new GradientDrawable(Orientation.RIGHT_LEFT, colors)); myList.setDividerHeight(1);
Hope it helps