当您第一次进入活动时,您将看到滚动条(来自HorizontalScrollView
)一秒钟,然后它将变暗。然后,当您滚动时,它会再次出现并在您完成滚动时变暗。
如何在输入活动时禁用此第一次滚动预览,但在滚动期间保持滚动条可见?
答案 0 :(得分:0)
找到它:它被称为setScrollIndicators,它被用作休闲:
ViewCompat.setScrollIndicators(yourView, 0);
或者对于API 23 +
<HorizontalScrollView
android:scrollIndicators="none"
android:layout_width="match_parent"
android:layout_height="wrap_content">