26 lines
796 B
XML
26 lines
796 B
XML
<?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 android:shape="rectangle">
|
|
<solid android:color="#3F4057" />
|
|
</shape>
|
|
</item>
|
|
|
|
|
|
<item android:id="@android:id/progress">
|
|
<!-- <scale-->
|
|
<!-- android:drawable="@drawable/ic_seek_bar_progress"-->
|
|
<!-- android:scaleWidth="100%" />-->
|
|
|
|
<clip>
|
|
<shape android:shape="rectangle">
|
|
|
|
<gradient
|
|
android:angle="180"
|
|
android:endColor="#256BFF"
|
|
android:startColor="#5CC1FF" />
|
|
</shape>
|
|
</clip>
|
|
</item>
|
|
</layer-list> |