mirror of
https://github.com/nextcloud/android.git
synced 2024-11-23 21:55:48 +03:00
19 lines
631 B
XML
19 lines
631 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"
|
||
|
android:drawable="@drawable/owncloud_progress_bg_light" />
|
||
|
<item android:id="@android:id/secondaryProgress">
|
||
|
<scale
|
||
|
android:drawable="@drawable/owncloud_progress_secondary_light"
|
||
|
android:scaleWidth="100%" />
|
||
|
</item>
|
||
|
<item android:id="@android:id/progress">
|
||
|
<scale
|
||
|
android:drawable="@drawable/owncloud_progress_primary_light"
|
||
|
android:scaleWidth="100%" />
|
||
|
</item>
|
||
|
|
||
|
</layer-list>
|