短视频app源码,自定义快速滚动条FastScrollBar

发布时间 2023-11-15 14:08:10作者: 云豹科技-苏凌霄

短视频app源码,自定义快速滚动条FastScrollBar

AndroidMainfest.xml中

 


 <activity android:name=".MainActivity"
            android:theme="@style/FastScrollTheme">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
 

自定义的样式

 


//bg_fast_scroll_bar_thumb 指的是短条
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <solid android:color="@color/red" />
    <size
        android:width="15dp"
        android:height="30dp" />
</shape>
//bg_fast_scroll_bar_track 指的是长条
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <solid android:color="@color/transparent" />
    <size
        android:width="5dp"
        android:height="10dp" />
</shape>

 

 以上就是 短视频app源码,自定义快速滚动条FastScrollBar,更多内容欢迎关注之后的文章