How to always show scrollbar

前端 未结 14 729
走了就别回头了
走了就别回头了 2020-11-30 18:59

The scrollbar in my scrollview is only visible when I start scrolling. How can I always show it?

14条回答
  •  失恋的感觉
    2020-11-30 19:30

    Simple and easy. Add this attribute to the ScrollBar:

    android:fadeScrollbars="false"
    

    Or you can do this in java:

    scrollView.setScrollbarFadingEnabled(false);
    

    Or in kotlin:

    scrollView.isScrollbarFadingEnabled = false
    

提交回复
热议问题