How do I remove the divider from a listview on android?

android, android-listview, divider

Solution

You can try `android:divider="@null"`.

Problem

I'm developing a app that have a `Listview`, and the items from list already have a style I don't need the divider. How do I set as hidden or remove the divider from the `ListView`?

Original source

Related problems