summaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
Diffstat (limited to 'res')
-rw-r--r--res/drawable/ic_audio_alarm_24dp.xml20
-rw-r--r--res/drawable/ic_audio_vol_24dp.xml20
-rw-r--r--res/drawable/ring_notif.xml5
-rw-r--r--res/drawable/ring_notif_mute.xml5
-rw-r--r--res/drawable/ring_notif_vibrate.xml5
-rw-r--r--res/xml/notification_settings.xml4
6 files changed, 45 insertions, 14 deletions
diff --git a/res/drawable/ic_audio_alarm_24dp.xml b/res/drawable/ic_audio_alarm_24dp.xml
new file mode 100644
index 0000000..ddfaa01
--- /dev/null
+++ b/res/drawable/ic_audio_alarm_24dp.xml
@@ -0,0 +1,20 @@
+<!--
+Copyright (C) 2014 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.
+-->
+<!-- shrink ic_audio_alarm from 32dp to 24dp using insets -->
+<inset xmlns:android="http://schemas.android.com/apk/res/android"
+ android:drawable="@*android:drawable/ic_audio_alarm"
+ android:inset="4dp"
+ />
diff --git a/res/drawable/ic_audio_vol_24dp.xml b/res/drawable/ic_audio_vol_24dp.xml
new file mode 100644
index 0000000..ecb3a40
--- /dev/null
+++ b/res/drawable/ic_audio_vol_24dp.xml
@@ -0,0 +1,20 @@
+<!--
+Copyright (C) 2014 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.
+-->
+<!-- shrink ic_audio_vol from 32dp to 24dp using insets -->
+<inset xmlns:android="http://schemas.android.com/apk/res/android"
+ android:drawable="@*android:drawable/ic_audio_vol"
+ android:inset="4dp"
+ />
diff --git a/res/drawable/ring_notif.xml b/res/drawable/ring_notif.xml
index 414a83d..cc9da31 100644
--- a/res/drawable/ring_notif.xml
+++ b/res/drawable/ring_notif.xml
@@ -16,9 +16,6 @@ Copyright (C) 2014 The Android Open Source Project
<!-- shrink ic_audio_ring_notif from 32dp to 24dp using insets -->
<inset xmlns:android="http://schemas.android.com/apk/res/android"
android:drawable="@*android:drawable/ic_audio_ring_notif"
- android:insetLeft="4dp"
- android:insetRight="4dp"
- android:insetTop="4dp"
- android:insetBottom="4dp"
+ android:inset="4dp"
/>
diff --git a/res/drawable/ring_notif_mute.xml b/res/drawable/ring_notif_mute.xml
index afb835c..fe9417d 100644
--- a/res/drawable/ring_notif_mute.xml
+++ b/res/drawable/ring_notif_mute.xml
@@ -16,8 +16,5 @@ Copyright (C) 2014 The Android Open Source Project
<!-- shrink ic_audio_ring_notif_mute from 32dp to 24dp using insets -->
<inset xmlns:android="http://schemas.android.com/apk/res/android"
android:drawable="@*android:drawable/ic_audio_ring_notif_mute"
- android:insetLeft="4dp"
- android:insetRight="4dp"
- android:insetTop="4dp"
- android:insetBottom="4dp"
+ android:inset="4dp"
/>
diff --git a/res/drawable/ring_notif_vibrate.xml b/res/drawable/ring_notif_vibrate.xml
index 4f19e01..37113d7 100644
--- a/res/drawable/ring_notif_vibrate.xml
+++ b/res/drawable/ring_notif_vibrate.xml
@@ -16,8 +16,5 @@ Copyright (C) 2014 The Android Open Source Project
<!-- shrink ic_audio_ring_notif_vibrate from 32dp to 24dp using insets -->
<inset xmlns:android="http://schemas.android.com/apk/res/android"
android:drawable="@*android:drawable/ic_audio_ring_notif_vibrate"
- android:insetLeft="4dp"
- android:insetRight="4dp"
- android:insetTop="4dp"
- android:insetBottom="4dp"
+ android:inset="4dp"
/>
diff --git a/res/xml/notification_settings.xml b/res/xml/notification_settings.xml
index e9a4992..3f9b40c 100644
--- a/res/xml/notification_settings.xml
+++ b/res/xml/notification_settings.xml
@@ -27,13 +27,13 @@
<!-- Media volume -->
<com.android.settings.notification.VolumeSeekBarPreference
android:key="media_volume"
- android:icon="@*android:drawable/ic_audio_vol"
+ android:icon="@drawable/ic_audio_vol_24dp"
android:title="@string/media_volume_option_title" />
<!-- Alarm volume -->
<com.android.settings.notification.VolumeSeekBarPreference
android:key="alarm_volume"
- android:icon="@*android:drawable/ic_audio_alarm"
+ android:icon="@drawable/ic_audio_alarm_24dp"
android:title="@string/alarm_volume_option_title" />
<!-- Ring volume -->