短影片app原始碼,自定義快速捲軸FastScrollBar

zhibo系統開發發表於2023-11-15

短影片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="
    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="
    android:shape="rectangle">
    <solid android:color="@color/transparent" />
    <size
        android:width="5dp"
        android:height="10dp" />
</shape>


 以上就是 短影片app原始碼,自定義快速捲軸FastScrollBar,更多內容歡迎關注之後的文章


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2995492/,如需轉載,請註明出處,否則將追究法律責任。

相關文章