Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/news-android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Luhmer <david-dev@live.de>2018-09-19 23:06:58 +0300
committerDavid Luhmer <david-dev@live.de>2018-09-19 23:06:58 +0300
commitbad279fd485ec5d573e982a5d1eb9ecd91c9337c (patch)
tree5018d0a287eaa70cb487edc0207ef7a837d0c466 /News-Android-App/src/main/res/drawable
parentf0707cfff345e754ea42f6ef361c3d53e47ab3c6 (diff)
design changes
Diffstat (limited to 'News-Android-App/src/main/res/drawable')
-rw-r--r--News-Android-App/src/main/res/drawable/custom_progress.xml29
1 files changed, 29 insertions, 0 deletions
diff --git a/News-Android-App/src/main/res/drawable/custom_progress.xml b/News-Android-App/src/main/res/drawable/custom_progress.xml
new file mode 100644
index 00000000..b5da5e49
--- /dev/null
+++ b/News-Android-App/src/main/res/drawable/custom_progress.xml
@@ -0,0 +1,29 @@
+<?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:innerRadiusRatio="2.3"
+ android:shape="ring"
+ android:useLevel="false"
+ android:type="sweep"
+ android:thicknessRatio="15.0">
+ <solid android:color="#00000000"/>
+ </shape>
+ </item>
+ <item android:id="@android:id/progress">
+ <rotate
+ android:pivotX="50%"
+ android:pivotY="50%"
+ android:fromDegrees="-90"
+ android:toDegrees="-90">
+ <shape
+ android:innerRadiusRatio="2.3"
+ android:shape="ring"
+ android:angle="0"
+ android:type="sweep"
+ android:thicknessRatio="15.0">
+ <solid android:color="@color/colorPrimaryDarkDarkTheme"/>
+ </shape>
+ </rotate>
+ </item>
+</layer-list> \ No newline at end of file