aboutsummaryrefslogtreecommitdiffstats
path: root/app/res/drawable
diff options
context:
space:
mode:
Diffstat (limited to 'app/res/drawable')
-rw-r--r--app/res/drawable/button_bg.xml13
-rw-r--r--app/res/drawable/button_bg_pressed.xml13
-rw-r--r--app/res/drawable/checkmark.xml29
-rw-r--r--app/res/drawable/checkmark_frame.xml25
-rw-r--r--app/res/drawable/divider_shape.xml13
-rw-r--r--app/res/drawable/radio_button.xml15
-rw-r--r--app/res/drawable/radio_frame.xml30
-rw-r--r--app/res/drawable/repwifi_button.xml7
-rw-r--r--app/res/drawable/repwifi_checkbox.xml10
-rw-r--r--app/res/drawable/repwifi_progbar.xml19
-rw-r--r--app/res/drawable/repwifi_radiobutton.xml13
-rw-r--r--app/res/drawable/rw_prog_0.pngbin0 -> 35735 bytes
-rw-r--r--app/res/drawable/rw_prog_1.pngbin0 -> 21565 bytes
-rw-r--r--app/res/drawable/rw_prog_2.pngbin0 -> 24459 bytes
-rw-r--r--app/res/drawable/rw_prog_3.pngbin0 -> 29342 bytes
15 files changed, 187 insertions, 0 deletions
diff --git a/app/res/drawable/button_bg.xml b/app/res/drawable/button_bg.xml
new file mode 100644
index 0000000..5523e98
--- /dev/null
+++ b/app/res/drawable/button_bg.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="utf-8"?>
+<shape xmlns:android="http://schemas.android.com/apk/res/android"
+ android:shape="rectangle" >
+
+ <solid android:color="@color/ThemeDark" />
+
+ <corners android:radius="3dp" />
+
+ <stroke
+ android:width="2dp"
+ android:color="@color/ThemeLight" />
+
+</shape> \ No newline at end of file
diff --git a/app/res/drawable/button_bg_pressed.xml b/app/res/drawable/button_bg_pressed.xml
new file mode 100644
index 0000000..6e4e953
--- /dev/null
+++ b/app/res/drawable/button_bg_pressed.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="utf-8"?>
+<shape xmlns:android="http://schemas.android.com/apk/res/android"
+ android:shape="rectangle" >
+
+ <solid android:color="@color/ThemeLight" />
+
+ <corners android:radius="3dp" />
+
+ <stroke
+ android:width="2dp"
+ android:color="@color/ThemeDark" />
+
+</shape> \ No newline at end of file
diff --git a/app/res/drawable/checkmark.xml b/app/res/drawable/checkmark.xml
new file mode 100644
index 0000000..9bcf74e
--- /dev/null
+++ b/app/res/drawable/checkmark.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:drawable="@drawable/checkmark_frame">
+
+ </item>
+ <item
+ android:height="3dp"
+ android:top="11dp"
+ android:left="7dp"
+ android:width="10dp">
+ <rotate android:fromDegrees="45" >
+ <shape android:shape="rectangle" >
+ <solid android:color="@color/ThemeLight" />
+ </shape>
+ </rotate>
+ </item>
+ <item
+ android:height="3dp"
+ android:left="12dp"
+ android:top="10dp"
+ android:width="15dp">
+ <rotate android:fromDegrees="-50" >
+ <shape android:shape="rectangle" >
+ <solid android:color="@color/ThemeLight" />
+ </shape>
+ </rotate>
+ </item>
+
+</layer-list> \ No newline at end of file
diff --git a/app/res/drawable/checkmark_frame.xml b/app/res/drawable/checkmark_frame.xml
new file mode 100644
index 0000000..1d5cb45
--- /dev/null
+++ b/app/res/drawable/checkmark_frame.xml
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="utf-8"?>
+<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
+
+ <item
+ android:height="20dp"
+ android:width="20dp"
+ android:top="5dp"
+ android:left="5dp">
+ <shape android:shape="rectangle" >
+ <solid android:color="@android:color/transparent" />
+
+ <stroke
+ android:width="2dp"
+ android:color="@color/ThemeDark" />
+ </shape>
+ </item>
+ <item
+ android:height="30dp"
+ android:width="30dp">
+ <shape android:shape="rectangle" >
+ <solid android:color="@android:color/transparent" />
+ </shape>
+ </item>
+
+</layer-list> \ No newline at end of file
diff --git a/app/res/drawable/divider_shape.xml b/app/res/drawable/divider_shape.xml
new file mode 100644
index 0000000..23d0a16
--- /dev/null
+++ b/app/res/drawable/divider_shape.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="utf-8"?>
+<shape xmlns:android="http://schemas.android.com/apk/res/android"
+ android:shape="rectangle" >
+
+ <solid android:color="@color/ThemeDark" />
+
+ <corners android:radius="2dp" />
+
+ <stroke
+ android:width="1dp"
+ android:color="@color/ThemeLight" />
+
+</shape> \ No newline at end of file
diff --git a/app/res/drawable/radio_button.xml b/app/res/drawable/radio_button.xml
new file mode 100644
index 0000000..ec611f0
--- /dev/null
+++ b/app/res/drawable/radio_button.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="utf-8"?>
+<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
+ <item android:drawable="@drawable/radio_frame">
+
+ </item>
+ <item
+ android:height="13dp"
+ android:width="13dp"
+ android:left="6dp"
+ android:top="6dp">
+ <shape android:shape="oval" >
+ <solid android:color="@color/ThemeDark" />
+ </shape>
+ </item>
+</layer-list> \ No newline at end of file
diff --git a/app/res/drawable/radio_frame.xml b/app/res/drawable/radio_frame.xml
new file mode 100644
index 0000000..de69091
--- /dev/null
+++ b/app/res/drawable/radio_frame.xml
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="utf-8"?>
+<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
+ <item
+ android:height="25dp"
+ android:width="25dp">
+ <shape android:shape="oval" >
+ <gradient
+ android:angle="45"
+ android:endColor="#101010"
+ android:startColor="#585858"
+ android:type="linear" >
+ </gradient>
+ </shape>
+ </item>
+
+ <item
+ android:height="20dp"
+ android:left="2.5dp"
+ android:top="2.5dp"
+ android:width="20dp">
+ <shape android:shape="oval" >
+ <solid android:color="@android:color/black" />
+
+ <stroke
+ android:width="1dp"
+ android:color="@color/ThemeDark" />
+ </shape>
+ </item>
+
+</layer-list> \ No newline at end of file
diff --git a/app/res/drawable/repwifi_button.xml b/app/res/drawable/repwifi_button.xml
new file mode 100644
index 0000000..263ee14
--- /dev/null
+++ b/app/res/drawable/repwifi_button.xml
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="utf-8"?>
+<selector xmlns:android="http://schemas.android.com/apk/res/android" >
+ <item android:drawable="@drawable/button_bg_pressed"
+ android:state_pressed="true"/>
+
+ <item android:drawable="@drawable/button_bg"/>
+</selector> \ No newline at end of file
diff --git a/app/res/drawable/repwifi_checkbox.xml b/app/res/drawable/repwifi_checkbox.xml
new file mode 100644
index 0000000..afe3b7f
--- /dev/null
+++ b/app/res/drawable/repwifi_checkbox.xml
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="utf-8"?>
+<selector xmlns:android="http://schemas.android.com/apk/res/android" >
+
+ <item android:drawable="@drawable/checkmark"
+ android:state_checked="true"/>
+
+ <item android:drawable="@drawable/checkmark_frame"
+ android:state_checked="false" />
+
+</selector> \ No newline at end of file
diff --git a/app/res/drawable/repwifi_progbar.xml b/app/res/drawable/repwifi_progbar.xml
new file mode 100644
index 0000000..1b05913
--- /dev/null
+++ b/app/res/drawable/repwifi_progbar.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
+ android:oneshot="false" >
+
+ <item android:duration="300">
+ <bitmap android:src="@drawable/rw_prog_1" />
+ </item>
+ <item android:duration="300">
+ <bitmap android:src="@drawable/rw_prog_2" />
+ </item>
+ <item android:duration="300">
+ <bitmap android:src="@drawable/rw_prog_3" />
+ </item>
+ <item android:duration="300">
+ <bitmap android:src="@drawable/rw_prog_0" />
+ </item>
+
+</animation-list> \ No newline at end of file
diff --git a/app/res/drawable/repwifi_radiobutton.xml b/app/res/drawable/repwifi_radiobutton.xml
new file mode 100644
index 0000000..053e100
--- /dev/null
+++ b/app/res/drawable/repwifi_radiobutton.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="utf-8"?>
+<selector xmlns:android="http://schemas.android.com/apk/res/android" >
+
+ <item android:drawable="@drawable/radio_button"
+ android:state_checked="true"/>
+
+ <item android:drawable="@drawable/radio_button"
+ android:state_pressed="true"/>
+
+ <item android:drawable="@drawable/radio_frame"
+ android:state_checked="false" />
+
+</selector> \ No newline at end of file
diff --git a/app/res/drawable/rw_prog_0.png b/app/res/drawable/rw_prog_0.png
new file mode 100644
index 0000000..b2f15ea
--- /dev/null
+++ b/app/res/drawable/rw_prog_0.png
Binary files differ
diff --git a/app/res/drawable/rw_prog_1.png b/app/res/drawable/rw_prog_1.png
new file mode 100644
index 0000000..0db5a6f
--- /dev/null
+++ b/app/res/drawable/rw_prog_1.png
Binary files differ
diff --git a/app/res/drawable/rw_prog_2.png b/app/res/drawable/rw_prog_2.png
new file mode 100644
index 0000000..3389b47
--- /dev/null
+++ b/app/res/drawable/rw_prog_2.png
Binary files differ
diff --git a/app/res/drawable/rw_prog_3.png b/app/res/drawable/rw_prog_3.png
new file mode 100644
index 0000000..155a2de
--- /dev/null
+++ b/app/res/drawable/rw_prog_3.png
Binary files differ