summaryrefslogtreecommitdiffstats
path: root/library/ics/res/drawable
diff options
context:
space:
mode:
Diffstat (limited to 'library/ics/res/drawable')
-rw-r--r--library/ics/res/drawable/suw_card_bg_dark.xml27
-rw-r--r--library/ics/res/drawable/suw_card_bg_light.xml27
-rw-r--r--library/ics/res/drawable/suw_navbar_btn_bg_dark.xml28
-rw-r--r--library/ics/res/drawable/suw_navbar_btn_bg_light.xml28
-rw-r--r--library/ics/res/drawable/suw_navbar_ic_back_dark.xml19
-rw-r--r--library/ics/res/drawable/suw_navbar_ic_back_light.xml19
-rw-r--r--library/ics/res/drawable/suw_navbar_ic_next_dark.xml19
-rw-r--r--library/ics/res/drawable/suw_navbar_ic_next_light.xml19
8 files changed, 186 insertions, 0 deletions
diff --git a/library/ics/res/drawable/suw_card_bg_dark.xml b/library/ics/res/drawable/suw_card_bg_dark.xml
new file mode 100644
index 0000000..e3d29d7
--- /dev/null
+++ b/library/ics/res/drawable/suw_card_bg_dark.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright (C) 2015 The Android Open Source Project
+
+ 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.
+-->
+
+<shape xmlns:android="http://schemas.android.com/apk/res/android"
+ android:shape="rectangle">
+
+ <corners
+ android:topLeftRadius="@dimen/suw_card_corner_radius"
+ android:topRightRadius="@dimen/suw_card_corner_radius" />
+
+ <solid android:color="@color/background_material_dark" />
+
+</shape>
diff --git a/library/ics/res/drawable/suw_card_bg_light.xml b/library/ics/res/drawable/suw_card_bg_light.xml
new file mode 100644
index 0000000..b6d6233
--- /dev/null
+++ b/library/ics/res/drawable/suw_card_bg_light.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright (C) 2015 The Android Open Source Project
+
+ 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.
+-->
+
+<shape xmlns:android="http://schemas.android.com/apk/res/android"
+ android:shape="rectangle">
+
+ <corners
+ android:topLeftRadius="@dimen/suw_card_corner_radius"
+ android:topRightRadius="@dimen/suw_card_corner_radius" />
+
+ <solid android:color="@color/background_material_light" />
+
+</shape>
diff --git a/library/ics/res/drawable/suw_navbar_btn_bg_dark.xml b/library/ics/res/drawable/suw_navbar_btn_bg_dark.xml
new file mode 100644
index 0000000..7f7f378
--- /dev/null
+++ b/library/ics/res/drawable/suw_navbar_btn_bg_dark.xml
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright (C) 2015 The Android Open Source Project
+
+ 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:state_pressed="true">
+ <color android:color="@color/ripple_material_dark" />
+ </item>
+
+ <item>
+ <color android:color="@android:color/transparent" />
+ </item>
+
+</selector>
diff --git a/library/ics/res/drawable/suw_navbar_btn_bg_light.xml b/library/ics/res/drawable/suw_navbar_btn_bg_light.xml
new file mode 100644
index 0000000..15b567c
--- /dev/null
+++ b/library/ics/res/drawable/suw_navbar_btn_bg_light.xml
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright (C) 2015 The Android Open Source Project
+
+ 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:state_pressed="true">
+ <color android:color="@color/ripple_material_light" />
+ </item>
+
+ <item>
+ <color android:color="@android:color/transparent" />
+ </item>
+
+</selector>
diff --git a/library/ics/res/drawable/suw_navbar_ic_back_dark.xml b/library/ics/res/drawable/suw_navbar_ic_back_dark.xml
new file mode 100644
index 0000000..0a825f3
--- /dev/null
+++ b/library/ics/res/drawable/suw_navbar_ic_back_dark.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright (C) 2015 The Android Open Source Project
+
+ 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.
+-->
+
+<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
+ android:src="@drawable/suw_navbar_ic_left_arrow_dark" />
diff --git a/library/ics/res/drawable/suw_navbar_ic_back_light.xml b/library/ics/res/drawable/suw_navbar_ic_back_light.xml
new file mode 100644
index 0000000..894398f
--- /dev/null
+++ b/library/ics/res/drawable/suw_navbar_ic_back_light.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright (C) 2015 The Android Open Source Project
+
+ 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.
+-->
+
+<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
+ android:src="@drawable/suw_navbar_ic_left_arrow_light" />
diff --git a/library/ics/res/drawable/suw_navbar_ic_next_dark.xml b/library/ics/res/drawable/suw_navbar_ic_next_dark.xml
new file mode 100644
index 0000000..8256fc6
--- /dev/null
+++ b/library/ics/res/drawable/suw_navbar_ic_next_dark.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright (C) 2015 The Android Open Source Project
+
+ 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.
+-->
+
+<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
+ android:src="@drawable/suw_navbar_ic_right_arrow_dark" />
diff --git a/library/ics/res/drawable/suw_navbar_ic_next_light.xml b/library/ics/res/drawable/suw_navbar_ic_next_light.xml
new file mode 100644
index 0000000..8fbd5fc
--- /dev/null
+++ b/library/ics/res/drawable/suw_navbar_ic_next_light.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright (C) 2015 The Android Open Source Project
+
+ 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.
+-->
+
+<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
+ android:src="@drawable/suw_navbar_ic_right_arrow_light" />