summaryrefslogtreecommitdiff
path: root/android/source/res/drawable
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2015-05-21 17:01:09 +0100
committerTor Lillqvist <tml@collabora.com>2015-05-21 17:10:19 +0100
commitab8cbb6cc121f7001a920f9d9f12cd9ccddec385 (patch)
tree9bb1bb4e6b2f3d055f3dbc9de9871ca0d3d20618 /android/source/res/drawable
parent1b53066433d1db9c3bfc3c6e6618565c15642b59 (diff)
Let's simplify the paths and be less 'experimental'
Diffstat (limited to 'android/source/res/drawable')
-rw-r--r--android/source/res/drawable/bg_striped.xml6
-rw-r--r--android/source/res/drawable/bg_striped_split.xml6
-rw-r--r--android/source/res/drawable/black_white_gradient.xml15
-rw-r--r--android/source/res/drawable/calc.pngbin0 -> 14818 bytes
-rw-r--r--android/source/res/drawable/draw.pngbin0 -> 18445 bytes
-rw-r--r--android/source/res/drawable/dummy_page.pngbin0 -> 49117 bytes
-rw-r--r--android/source/res/drawable/folder.pngbin0 -> 17274 bytes
-rw-r--r--android/source/res/drawable/handle_end.pngbin0 -> 1734 bytes
-rw-r--r--android/source/res/drawable/handle_end_level.xml14
-rw-r--r--android/source/res/drawable/handle_graphic.pngbin0 -> 289 bytes
-rw-r--r--android/source/res/drawable/handle_middle.pngbin0 -> 1850 bytes
-rw-r--r--android/source/res/drawable/handle_start.pngbin0 -> 1676 bytes
-rw-r--r--android/source/res/drawable/handle_start_level.xml14
-rw-r--r--android/source/res/drawable/impress.pngbin0 -> 13936 bytes
-rw-r--r--android/source/res/drawable/writer.pngbin0 -> 15878 bytes
15 files changed, 55 insertions, 0 deletions
diff --git a/android/source/res/drawable/bg_striped.xml b/android/source/res/drawable/bg_striped.xml
new file mode 100644
index 000000000000..77e0aab2221b
--- /dev/null
+++ b/android/source/res/drawable/bg_striped.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
+ android:src="@drawable/bg_striped_img"
+ android:tileMode="repeat"
+ android:dither="true" /> \ No newline at end of file
diff --git a/android/source/res/drawable/bg_striped_split.xml b/android/source/res/drawable/bg_striped_split.xml
new file mode 100644
index 000000000000..9b0e31354b28
--- /dev/null
+++ b/android/source/res/drawable/bg_striped_split.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
+ android:src="@drawable/bg_striped_split_img"
+ android:tileMode="repeat"
+ android:dither="true" /> \ No newline at end of file
diff --git a/android/source/res/drawable/black_white_gradient.xml b/android/source/res/drawable/black_white_gradient.xml
new file mode 100644
index 000000000000..3ed538ccec34
--- /dev/null
+++ b/android/source/res/drawable/black_white_gradient.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="utf-8"?>
+<shape xmlns:android="http://schemas.android.com/apk/res/android"
+ android:shape="rectangle">
+ <gradient
+ android:type="radial"
+ android:gradientRadius="200"
+ android:startColor="#FF000000"
+ android:endColor="#00FFFFFF"
+ android:angle="45"/>
+ <padding android:left="7dp"
+ android:top="7dp"
+ android:right="7dp"
+ android:bottom="7dp" />
+ <corners android:radius="8dp" />
+</shape> \ No newline at end of file
diff --git a/android/source/res/drawable/calc.png b/android/source/res/drawable/calc.png
new file mode 100644
index 000000000000..0c0d31444d11
--- /dev/null
+++ b/android/source/res/drawable/calc.png
Binary files differ
diff --git a/android/source/res/drawable/draw.png b/android/source/res/drawable/draw.png
new file mode 100644
index 000000000000..b3ee11426a04
--- /dev/null
+++ b/android/source/res/drawable/draw.png
Binary files differ
diff --git a/android/source/res/drawable/dummy_page.png b/android/source/res/drawable/dummy_page.png
new file mode 100644
index 000000000000..31a0756808b9
--- /dev/null
+++ b/android/source/res/drawable/dummy_page.png
Binary files differ
diff --git a/android/source/res/drawable/folder.png b/android/source/res/drawable/folder.png
new file mode 100644
index 000000000000..40a65984708d
--- /dev/null
+++ b/android/source/res/drawable/folder.png
Binary files differ
diff --git a/android/source/res/drawable/handle_end.png b/android/source/res/drawable/handle_end.png
new file mode 100644
index 000000000000..32b77dfa6e26
--- /dev/null
+++ b/android/source/res/drawable/handle_end.png
Binary files differ
diff --git a/android/source/res/drawable/handle_end_level.xml b/android/source/res/drawable/handle_end_level.xml
new file mode 100644
index 000000000000..40a512b3800a
--- /dev/null
+++ b/android/source/res/drawable/handle_end_level.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<level-list xmlns:android="http://schemas.android.com/apk/res/android">
+
+ <!-- LTR -->
+ <item android:maxLevel="0" android:drawable="@drawable/handle_end"/>
+
+ <!-- RTL -->
+ <item android:maxLevel="1" android:drawable="@drawable/handle_start"/>
+
+</level-list>
diff --git a/android/source/res/drawable/handle_graphic.png b/android/source/res/drawable/handle_graphic.png
new file mode 100644
index 000000000000..7317eee67d05
--- /dev/null
+++ b/android/source/res/drawable/handle_graphic.png
Binary files differ
diff --git a/android/source/res/drawable/handle_middle.png b/android/source/res/drawable/handle_middle.png
new file mode 100644
index 000000000000..751eb898b136
--- /dev/null
+++ b/android/source/res/drawable/handle_middle.png
Binary files differ
diff --git a/android/source/res/drawable/handle_start.png b/android/source/res/drawable/handle_start.png
new file mode 100644
index 000000000000..cf12a0dcdcf3
--- /dev/null
+++ b/android/source/res/drawable/handle_start.png
Binary files differ
diff --git a/android/source/res/drawable/handle_start_level.xml b/android/source/res/drawable/handle_start_level.xml
new file mode 100644
index 000000000000..22945138d765
--- /dev/null
+++ b/android/source/res/drawable/handle_start_level.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<level-list xmlns:android="http://schemas.android.com/apk/res/android">
+
+ <!-- LTR -->
+ <item android:maxLevel="0" android:drawable="@drawable/handle_start"/>
+
+ <!-- RTL -->
+ <item android:maxLevel="1" android:drawable="@drawable/handle_end"/>
+
+</level-list>
diff --git a/android/source/res/drawable/impress.png b/android/source/res/drawable/impress.png
new file mode 100644
index 000000000000..5909f05bf089
--- /dev/null
+++ b/android/source/res/drawable/impress.png
Binary files differ
diff --git a/android/source/res/drawable/writer.png b/android/source/res/drawable/writer.png
new file mode 100644
index 000000000000..8a4e21e47174
--- /dev/null
+++ b/android/source/res/drawable/writer.png
Binary files differ