diff options
author | Tor Lillqvist <tml@collabora.com> | 2015-05-21 17:01:09 +0100 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2015-05-21 17:10:19 +0100 |
commit | ab8cbb6cc121f7001a920f9d9f12cd9ccddec385 (patch) | |
tree | 9bb1bb4e6b2f3d055f3dbc9de9871ca0d3d20618 /android/source/res/drawable | |
parent | 1b53066433d1db9c3bfc3c6e6618565c15642b59 (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.xml | 6 | ||||
-rw-r--r-- | android/source/res/drawable/bg_striped_split.xml | 6 | ||||
-rw-r--r-- | android/source/res/drawable/black_white_gradient.xml | 15 | ||||
-rw-r--r-- | android/source/res/drawable/calc.png | bin | 0 -> 14818 bytes | |||
-rw-r--r-- | android/source/res/drawable/draw.png | bin | 0 -> 18445 bytes | |||
-rw-r--r-- | android/source/res/drawable/dummy_page.png | bin | 0 -> 49117 bytes | |||
-rw-r--r-- | android/source/res/drawable/folder.png | bin | 0 -> 17274 bytes | |||
-rw-r--r-- | android/source/res/drawable/handle_end.png | bin | 0 -> 1734 bytes | |||
-rw-r--r-- | android/source/res/drawable/handle_end_level.xml | 14 | ||||
-rw-r--r-- | android/source/res/drawable/handle_graphic.png | bin | 0 -> 289 bytes | |||
-rw-r--r-- | android/source/res/drawable/handle_middle.png | bin | 0 -> 1850 bytes | |||
-rw-r--r-- | android/source/res/drawable/handle_start.png | bin | 0 -> 1676 bytes | |||
-rw-r--r-- | android/source/res/drawable/handle_start_level.xml | 14 | ||||
-rw-r--r-- | android/source/res/drawable/impress.png | bin | 0 -> 13936 bytes | |||
-rw-r--r-- | android/source/res/drawable/writer.png | bin | 0 -> 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 Binary files differnew file mode 100644 index 000000000000..0c0d31444d11 --- /dev/null +++ b/android/source/res/drawable/calc.png diff --git a/android/source/res/drawable/draw.png b/android/source/res/drawable/draw.png Binary files differnew file mode 100644 index 000000000000..b3ee11426a04 --- /dev/null +++ b/android/source/res/drawable/draw.png diff --git a/android/source/res/drawable/dummy_page.png b/android/source/res/drawable/dummy_page.png Binary files differnew file mode 100644 index 000000000000..31a0756808b9 --- /dev/null +++ b/android/source/res/drawable/dummy_page.png diff --git a/android/source/res/drawable/folder.png b/android/source/res/drawable/folder.png Binary files differnew file mode 100644 index 000000000000..40a65984708d --- /dev/null +++ b/android/source/res/drawable/folder.png diff --git a/android/source/res/drawable/handle_end.png b/android/source/res/drawable/handle_end.png Binary files differnew file mode 100644 index 000000000000..32b77dfa6e26 --- /dev/null +++ b/android/source/res/drawable/handle_end.png 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 Binary files differnew file mode 100644 index 000000000000..7317eee67d05 --- /dev/null +++ b/android/source/res/drawable/handle_graphic.png diff --git a/android/source/res/drawable/handle_middle.png b/android/source/res/drawable/handle_middle.png Binary files differnew file mode 100644 index 000000000000..751eb898b136 --- /dev/null +++ b/android/source/res/drawable/handle_middle.png diff --git a/android/source/res/drawable/handle_start.png b/android/source/res/drawable/handle_start.png Binary files differnew file mode 100644 index 000000000000..cf12a0dcdcf3 --- /dev/null +++ b/android/source/res/drawable/handle_start.png 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 Binary files differnew file mode 100644 index 000000000000..5909f05bf089 --- /dev/null +++ b/android/source/res/drawable/impress.png diff --git a/android/source/res/drawable/writer.png b/android/source/res/drawable/writer.png Binary files differnew file mode 100644 index 000000000000..8a4e21e47174 --- /dev/null +++ b/android/source/res/drawable/writer.png |