Android hide listview scrollbar?

后端 未结 5 1383
失恋的感觉
失恋的感觉 2020-12-12 23:25

Is there a way to hide scrollbar in ListView. I know it\'s possible for ScrollView but can\'t find a way for ListView scrollbar. Any i

5条回答
  •  Happy的楠姐
    2020-12-12 23:41

    Also make sure that fast scrolling disabled:

    listView.setFastScrollEnabled(false);
    

    Thanks, Rahul

提交回复
热议问题