Search code examples
androidlistviewandroid-layout

How to remove the border in a Listview?


On Android, how can the Line which appears in a listview at the bottom of Lists be removed?


Solution

  • do this

    myListview.setDivider(null);
    

    This should help you.