大數據

直播電商軟件開發,拖動條自定義背景,進度條顏色

直播電商軟件開發,拖動條自定義背景,進度條顏色相關的代碼

<SeekBar
            android:max="100"
            android:maxHeight="6dp"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:thumb="@drawable/seek_bar_thumb"
            android:progressDrawable="@drawable/seek_bar_bg"/>
 
seek_bar_thumb:
 
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_selected="true">
        <shape android:shape="oval">
            <size android:height="15dp" android:width="15dp" />
            <solid android:color="@color/widget_progress_red_color" />
        </shape>
    </item>
    <item android:state_pressed="true">
        <shape android:shape="oval">
            <size android:height="15dp" android:width="15dp" />
            <solid android:color="@color/widget_progress_red_color" />
        </shape>
    </item>
    <item>
        <shape android:shape="oval">
            <size android:height="15dp" android:width="15dp" />
            <solid android:color="@color/widget_progress_red_color" />
        </shape>
    </item>
</selector>
 
seek_bar_bg:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:id="@android:id/background" >
        <shape>
            <solid android:color="@color/widget_set_grey_background_color" />
            <corners android:radius="10dp"/>
        </shape>
    </item>
    <item android:id="@android:id/progress" >
        <clip>
            <shape>
                <solid android:color="@color/widget_progress_red_color" />
                <corners android:radius="10dp"/>
            </shape>
        </clip>
    </item>
</layer-list>

以上就是直播電商軟件開發,拖動條自定義背景,進度條顏色相關的代碼, 更多內容歡迎關注之後的文章

Leave a Reply

Your email address will not be published. Required fields are marked *