provide drawable for volume adaption setting
This commit is contained in:
parent
95fd348c11
commit
3e610c85b9
|
@ -30,6 +30,7 @@
|
|||
<ListPreference
|
||||
android:entries="@array/spnVolumeReductionItems"
|
||||
android:entryValues="@array/spnVolumeReductionValues"
|
||||
android:icon="?attr/ic_volume_adaption"
|
||||
android:summary="@string/feed_volume_reduction_summary"
|
||||
android:title="@string/feed_volume_reduction"
|
||||
android:defaultValue="off"
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
<path
|
||||
android:fillColor="#FF757575"
|
||||
android:pathData="M14,3.23V5.29C16.89,6.15 19,8.83 19,12C19,15.17 16.89,17.84 14,18.7V20.77C18,19.86 21,16.28 21,12C21,7.72 18,4.14 14,3.23M16.5,12C16.5,10.23 15.5,8.71 14,7.97V16C15.5,15.29 16.5,13.76 16.5,12M3,9V15H7L12,20V4L7,9H3Z" />
|
||||
</vector>
|
|
@ -0,0 +1,9 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
<path
|
||||
android:fillColor="#FFFFFFFF"
|
||||
android:pathData="M14,3.23V5.29C16.89,6.15 19,8.83 19,12C19,15.17 16.89,17.84 14,18.7V20.77C18,19.86 21,16.28 21,12C21,7.72 18,4.14 14,3.23M16.5,12C16.5,10.23 15.5,8.71 14,7.97V16C15.5,15.29 16.5,13.76 16.5,12M3,9V15H7L12,20V4L7,9H3Z" />
|
||||
</vector>
|
|
@ -53,6 +53,7 @@
|
|||
<attr name="ic_select_none" format="reference"/>
|
||||
<attr name="ic_sort" format="reference"/>
|
||||
<attr name="ic_key" format="reference"/>
|
||||
<attr name="ic_volume_adaption" format="reference"/>
|
||||
<attr name="ic_sd_storage" format="reference"/>
|
||||
<attr name="ic_create_new_folder" format="reference"/>
|
||||
<attr name="ic_cast_disconnect" format="reference"/>
|
||||
|
|
|
@ -76,6 +76,7 @@
|
|||
<item name="ic_bookmark">@drawable/ic_bookmark_grey600_24dp</item>
|
||||
<item name="batch_edit_fab_icon">@drawable/ic_fab_edit_white</item>
|
||||
<item name="ic_key">@drawable/ic_key_grey600</item>
|
||||
<item name="ic_volume_adaption">@drawable/ic_volume_adaption_grey</item>
|
||||
<item name="master_switch_background">@color/master_switch_background_light</item>
|
||||
<item name="currently_playing_background">@color/highlight_light</item>
|
||||
|
||||
|
@ -164,6 +165,7 @@
|
|||
<item name="ic_bookmark">@drawable/ic_bookmark_white_24dp</item>
|
||||
<item name="batch_edit_fab_icon">@drawable/ic_fab_edit_white</item>
|
||||
<item name="ic_key">@drawable/ic_key_white</item>
|
||||
<item name="ic_volume_adaption">@drawable/ic_volume_adaption_white</item>
|
||||
<item name="master_switch_background">@color/master_switch_background_dark</item>
|
||||
<item name="currently_playing_background">@color/highlight_dark</item>
|
||||
<item name="preferenceTheme">@style/PreferenceThemeOverlay.v14.Material</item>
|
||||
|
|
Loading…
Reference in New Issue