Quick Tip
If you want to remove the dividers from an Android ListView, execute the following code on your ListView object.
1 2 3 | |
or if you are trying to remove dividers from a ListActivity, do this in your onCreate() method:
1 2 | |
And there you go, no more dividers. Enjoy.