Reposition scroll bar of ListView with padding

后端 未结 2 1178
攒了一身酷
攒了一身酷 2021-01-30 01:58

I have a ListView with padding to the right (and left).

Currently the list looks something like this:

-----------------  |
| ROW         | |         


        
相关标签:
2条回答
  • 2021-01-30 02:36

    add this to your list view

    android:scrollbarStyle="outsideInset"
    

    it will add a little padding and the scroll bar will be outside

    0 讨论(0)
  • 2021-01-30 02:57

    Try this:

    <ListView
        ...
        android:scrollbarStyle="outsideOverlay" />
    
    0 讨论(0)
提交回复
热议问题