mirror of
https://gitlab.futo.org/videostreaming/grayjay.git
synced 2025-09-08 18:46:08 +00:00
Add missing file
This commit is contained in:
parent
940bf163da
commit
334f58979a
1 changed files with 40 additions and 0 deletions
40
app/src/main/res/drawable/progress_bar.xml
Normal file
40
app/src/main/res/drawable/progress_bar.xml
Normal file
|
@ -0,0 +1,40 @@
|
|||
<?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>
|
||||
<corners android:radius="5dip" />
|
||||
<gradient
|
||||
android:angle="270"
|
||||
android:centerColor="#ff5a5d5a"
|
||||
android:centerY="0.75"
|
||||
android:endColor="#ff747674"
|
||||
android:startColor="#ff9d9e9d" />
|
||||
</shape>
|
||||
</item>
|
||||
|
||||
<item android:id="@android:id/secondaryProgress">
|
||||
<clip>
|
||||
<shape>
|
||||
<corners android:radius="5dip" />
|
||||
<gradient
|
||||
android:angle="270"
|
||||
android:centerColor="#80ffb600"
|
||||
android:centerY="0.75"
|
||||
android:endColor="#a0ffcb00"
|
||||
android:startColor="#80ffd300" />
|
||||
</shape>
|
||||
</clip>
|
||||
</item>
|
||||
<item android:id="@android:id/progress">
|
||||
<clip>
|
||||
<shape>
|
||||
<corners android:radius="5dip" />
|
||||
<gradient
|
||||
android:angle="270"
|
||||
android:endColor="#000080"
|
||||
android:startColor="#3333FF" />
|
||||
</shape>
|
||||
</clip>
|
||||
</item>
|
||||
|
||||
</layer-list>
|
Loading…
Add table
Add a link
Reference in a new issue