diff options
author | daniel oeh <daniel.oeh@gmail.com> | 2014-10-11 17:43:07 +0200 |
---|---|---|
committer | daniel oeh <daniel.oeh@gmail.com> | 2014-10-11 17:43:07 +0200 |
commit | 658559699f5cd482bb19ade298db43a65d750664 (patch) | |
tree | db9ab70a4aef41678a2436cd5ab25cb4baea8699 /core/src/main/res/drawable | |
parent | 21b5b835e3a9c83410120d38a63e51be2981a38b (diff) | |
download | AntennaPod-658559699f5cd482bb19ade298db43a65d750664.zip |
Moved core classes into subproject
Diffstat (limited to 'core/src/main/res/drawable')
-rw-r--r-- | core/src/main/res/drawable/badge.xml | 13 | ||||
-rw-r--r-- | core/src/main/res/drawable/borderless_button.xml | 13 | ||||
-rw-r--r-- | core/src/main/res/drawable/borderless_button_dark.xml | 13 | ||||
-rw-r--r-- | core/src/main/res/drawable/horizontal_divider.9.png | bin | 0 -> 159 bytes | |||
-rw-r--r-- | core/src/main/res/drawable/overlay_button_circle_background.xml | 10 | ||||
-rw-r--r-- | core/src/main/res/drawable/overlay_drawable.xml | 20 | ||||
-rw-r--r-- | core/src/main/res/drawable/overlay_drawable_dark.xml | 15 | ||||
-rw-r--r-- | core/src/main/res/drawable/type_audio.png | bin | 0 -> 1580 bytes | |||
-rw-r--r-- | core/src/main/res/drawable/type_video.png | bin | 0 -> 1129 bytes | |||
-rw-r--r-- | core/src/main/res/drawable/undobar_button.xml | 22 | ||||
-rw-r--r-- | core/src/main/res/drawable/vertical_divider.9.png | bin | 0 -> 191 bytes | |||
-rw-r--r-- | core/src/main/res/drawable/white_circle.xml | 11 |
12 files changed, 117 insertions, 0 deletions
diff --git a/core/src/main/res/drawable/badge.xml b/core/src/main/res/drawable/badge.xml new file mode 100644 index 000000000..f98384cb9 --- /dev/null +++ b/core/src/main/res/drawable/badge.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/bright_blue" /> + + <padding + android:bottom="5dip" + android:left="5dip" + android:right="5dip" + android:top="5dip" /> + +</shape>
\ No newline at end of file diff --git a/core/src/main/res/drawable/borderless_button.xml b/core/src/main/res/drawable/borderless_button.xml new file mode 100644 index 000000000..27d723eed --- /dev/null +++ b/core/src/main/res/drawable/borderless_button.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="utf-8"?> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_pressed="true"><shape android:shape="rectangle"> + <solid android:color="@color/selection_background_color_light" /> + </shape></item> + <item android:state_focused="true"><shape android:shape="rectangle"> + <solid android:color="@color/selection_background_color_light" /> + </shape></item> + <item><shape android:shape="rectangle"> + <solid android:color="@android:color/transparent" /> + </shape></item> + +</selector>
\ No newline at end of file diff --git a/core/src/main/res/drawable/borderless_button_dark.xml b/core/src/main/res/drawable/borderless_button_dark.xml new file mode 100644 index 000000000..6d263938d --- /dev/null +++ b/core/src/main/res/drawable/borderless_button_dark.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="utf-8"?> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_pressed="true"><shape android:shape="rectangle"> + <solid android:color="@color/selection_background_color_dark" /> + </shape></item> + <item android:state_focused="true"><shape android:shape="rectangle"> + <solid android:color="@color/selection_background_color_dark" /> + </shape></item> + <item><shape android:shape="rectangle"> + <solid android:color="@android:color/transparent" /> + </shape></item> + +</selector>
\ No newline at end of file diff --git a/core/src/main/res/drawable/horizontal_divider.9.png b/core/src/main/res/drawable/horizontal_divider.9.png Binary files differnew file mode 100644 index 000000000..7db0549da --- /dev/null +++ b/core/src/main/res/drawable/horizontal_divider.9.png diff --git a/core/src/main/res/drawable/overlay_button_circle_background.xml b/core/src/main/res/drawable/overlay_button_circle_background.xml new file mode 100644 index 000000000..90c51472c --- /dev/null +++ b/core/src/main/res/drawable/overlay_button_circle_background.xml @@ -0,0 +1,10 @@ +<?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="60" + android:startColor="#000000" + android:endColor="@android:color/transparent"/> +</shape>
\ No newline at end of file diff --git a/core/src/main/res/drawable/overlay_drawable.xml b/core/src/main/res/drawable/overlay_drawable.xml new file mode 100644 index 000000000..185ffefc1 --- /dev/null +++ b/core/src/main/res/drawable/overlay_drawable.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<layer-list xmlns:android="http://schemas.android.com/apk/res/android" > + + <item> + <shape android:shape="rectangle" > + <solid android:color="#F0BABABA" /> + </shape> + </item> + <item android:top="1dp"> + <shape android:shape="rectangle" > + <solid android:color="#D2D2D2" /> + </shape> + </item> + <item android:top="2dp"> + <shape android:shape="rectangle" > + <solid android:color="@color/overlay_light" /> + </shape> + </item> + +</layer-list>
\ No newline at end of file diff --git a/core/src/main/res/drawable/overlay_drawable_dark.xml b/core/src/main/res/drawable/overlay_drawable_dark.xml new file mode 100644 index 000000000..fb78f5633 --- /dev/null +++ b/core/src/main/res/drawable/overlay_drawable_dark.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="utf-8"?> +<layer-list xmlns:android="http://schemas.android.com/apk/res/android" > + + <item> + <shape android:shape="rectangle" > + <solid android:color="#45B3E1" /> + </shape> + </item> + <item android:top="1dp"> + <shape android:shape="rectangle" > + <solid android:color="@color/overlay_dark" /> + </shape> + </item> + +</layer-list>
\ No newline at end of file diff --git a/core/src/main/res/drawable/type_audio.png b/core/src/main/res/drawable/type_audio.png Binary files differnew file mode 100644 index 000000000..4ec9efd97 --- /dev/null +++ b/core/src/main/res/drawable/type_audio.png diff --git a/core/src/main/res/drawable/type_video.png b/core/src/main/res/drawable/type_video.png Binary files differnew file mode 100644 index 000000000..a2722b812 --- /dev/null +++ b/core/src/main/res/drawable/type_video.png diff --git a/core/src/main/res/drawable/undobar_button.xml b/core/src/main/res/drawable/undobar_button.xml new file mode 100644 index 000000000..a4de91b49 --- /dev/null +++ b/core/src/main/res/drawable/undobar_button.xml @@ -0,0 +1,22 @@ +<!-- + + Copyright 2012 Roman Nurik + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +--> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:drawable="@drawable/undobar_button_pressed" android:state_pressed="true"/> + <item android:drawable="@drawable/undobar_button_focused" android:state_focused="true"/> + <item android:drawable="@android:color/transparent"/> +</selector> diff --git a/core/src/main/res/drawable/vertical_divider.9.png b/core/src/main/res/drawable/vertical_divider.9.png Binary files differnew file mode 100644 index 000000000..6a0edafb3 --- /dev/null +++ b/core/src/main/res/drawable/vertical_divider.9.png diff --git a/core/src/main/res/drawable/white_circle.xml b/core/src/main/res/drawable/white_circle.xml new file mode 100644 index 000000000..597b70a2d --- /dev/null +++ b/core/src/main/res/drawable/white_circle.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<shape xmlns:android="http://schemas.android.com/apk/res/android" + android:shape="oval" > + + <solid android:color="@color/white" /> + + <size + android:height="4dp" + android:width="4dp" /> + +</shape>
\ No newline at end of file |