diff options
author | daniel oeh <daniel.oeh@gmail.com> | 2014-09-17 20:51:45 +0200 |
---|---|---|
committer | daniel oeh <daniel.oeh@gmail.com> | 2014-09-17 20:51:45 +0200 |
commit | 072639b5b22e816df9f78b5cd8a7d4e5379b6aff (patch) | |
tree | 341c574bd6eb64497470e7226b3222b0a7c5a824 /res/drawable | |
parent | 76add8ef68dbc9997e901f4c11c397f581e8eabe (diff) | |
download | AntennaPod-072639b5b22e816df9f78b5cd8a7d4e5379b6aff.zip |
Changed project structure
Switched from custom layout to standard gradle project structure
Diffstat (limited to 'res/drawable')
-rw-r--r-- | res/drawable/badge.xml | 13 | ||||
-rw-r--r-- | res/drawable/borderless_button.xml | 13 | ||||
-rw-r--r-- | res/drawable/borderless_button_dark.xml | 13 | ||||
-rw-r--r-- | res/drawable/horizontal_divider.9.png | bin | 159 -> 0 bytes | |||
-rw-r--r-- | res/drawable/overlay_button_circle_background.xml | 10 | ||||
-rw-r--r-- | res/drawable/overlay_drawable.xml | 20 | ||||
-rw-r--r-- | res/drawable/overlay_drawable_dark.xml | 15 | ||||
-rw-r--r-- | res/drawable/type_audio.png | bin | 1580 -> 0 bytes | |||
-rw-r--r-- | res/drawable/type_video.png | bin | 1129 -> 0 bytes | |||
-rw-r--r-- | res/drawable/undobar_button.xml | 22 | ||||
-rw-r--r-- | res/drawable/vertical_divider.9.png | bin | 191 -> 0 bytes | |||
-rw-r--r-- | res/drawable/white_circle.xml | 11 |
12 files changed, 0 insertions, 117 deletions
diff --git a/res/drawable/badge.xml b/res/drawable/badge.xml deleted file mode 100644 index f98384cb9..000000000 --- a/res/drawable/badge.xml +++ /dev/null @@ -1,13 +0,0 @@ -<?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/res/drawable/borderless_button.xml b/res/drawable/borderless_button.xml deleted file mode 100644 index 27d723eed..000000000 --- a/res/drawable/borderless_button.xml +++ /dev/null @@ -1,13 +0,0 @@ -<?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/res/drawable/borderless_button_dark.xml b/res/drawable/borderless_button_dark.xml deleted file mode 100644 index 6d263938d..000000000 --- a/res/drawable/borderless_button_dark.xml +++ /dev/null @@ -1,13 +0,0 @@ -<?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/res/drawable/horizontal_divider.9.png b/res/drawable/horizontal_divider.9.png Binary files differdeleted file mode 100644 index 7db0549da..000000000 --- a/res/drawable/horizontal_divider.9.png +++ /dev/null diff --git a/res/drawable/overlay_button_circle_background.xml b/res/drawable/overlay_button_circle_background.xml deleted file mode 100644 index 90c51472c..000000000 --- a/res/drawable/overlay_button_circle_background.xml +++ /dev/null @@ -1,10 +0,0 @@ -<?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/res/drawable/overlay_drawable.xml b/res/drawable/overlay_drawable.xml deleted file mode 100644 index 185ffefc1..000000000 --- a/res/drawable/overlay_drawable.xml +++ /dev/null @@ -1,20 +0,0 @@ -<?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/res/drawable/overlay_drawable_dark.xml b/res/drawable/overlay_drawable_dark.xml deleted file mode 100644 index fb78f5633..000000000 --- a/res/drawable/overlay_drawable_dark.xml +++ /dev/null @@ -1,15 +0,0 @@ -<?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/res/drawable/type_audio.png b/res/drawable/type_audio.png Binary files differdeleted file mode 100644 index 4ec9efd97..000000000 --- a/res/drawable/type_audio.png +++ /dev/null diff --git a/res/drawable/type_video.png b/res/drawable/type_video.png Binary files differdeleted file mode 100644 index a2722b812..000000000 --- a/res/drawable/type_video.png +++ /dev/null diff --git a/res/drawable/undobar_button.xml b/res/drawable/undobar_button.xml deleted file mode 100644 index a4de91b49..000000000 --- a/res/drawable/undobar_button.xml +++ /dev/null @@ -1,22 +0,0 @@ -<!-- - - 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/res/drawable/vertical_divider.9.png b/res/drawable/vertical_divider.9.png Binary files differdeleted file mode 100644 index 6a0edafb3..000000000 --- a/res/drawable/vertical_divider.9.png +++ /dev/null diff --git a/res/drawable/white_circle.xml b/res/drawable/white_circle.xml deleted file mode 100644 index 597b70a2d..000000000 --- a/res/drawable/white_circle.xml +++ /dev/null @@ -1,11 +0,0 @@ -<?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 |