在Android中設置滾動條的方法取決于你想要在哪個視圖中顯示滾動條。以下是一些常見的設置滾動條的方法:
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- Your content here -->
</ScrollView>
android:scrollbars
屬性來顯示滾動條,可以設置為vertical
、horizontal
或both
來顯示垂直滾動條、水平滾動條或同時顯示垂直和水平滾動條。<androidx.recyclerview.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="vertical">
</androidx.recyclerview.widget.RecyclerView>
android:scrollbars
屬性來顯示滾動條,可以設置為vertical
、horizontal
或both
來顯示垂直滾動條、水平滾動條或同時顯示垂直和水平滾動條。<ListView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="vertical">
</ListView>
除了上述方法外,你也可以通過在Java代碼中使用setScrollbarFadingEnabled()
方法來設置滾動條的淡入淡出效果,或者使用setScrollbarSize()
方法來設置滾動條的大小。