Cherish:Switch styles [2/3]

This commit is contained in:
SKULSHADY
2018-12-30 21:21:33 +07:00
committed by Hung Phan
parent f23d0aeea4
commit 378706a0fa
5 changed files with 50 additions and 0 deletions

View File

@@ -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="?android:attr/colorControlNormal"
android:pathData="M17,7L7,7c-2.76,0 -5,2.24 -5,5s2.24,5 5,5h10c2.76,0 5,-2.24 5,-5s-2.24,-5 -5,-5zM17,15c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3 3,1.34 3,3 -1.34,3 -3,3z"/>
</vector>

View File

@@ -353,4 +353,16 @@
<item>1</item>
<item>0</item>
</string-array>
<!-- Switch styles -->
<string-array name="switch_style_entries" translatable="false">
<item>@string/switch_default</item>
<item>@string/switch_md2</item>
<item>@string/switch_oneplus</item>
</string-array>
<string-array name="switch_style_values" translatable="false">
<item>0</item>
<item>1</item>
<item>2</item>
</string-array>
</resources>

View File

@@ -440,5 +440,11 @@
<!-- Force expanded notifications -->
<string name="force_expanded_notifications_title">Force expanded notifications</string>
<string name="force_expanded_notifications_summary">Force apps that support expanded notifications</string>
<!-- Switch styles -->
<string name="switch_style_title">Switch appearance</string>
<string name="switch_default">Default</string>
<string name="switch_md2">Material Design 2</string>
<string name="switch_oneplus">OnePlus</string>
</resources>

View File

@@ -32,6 +32,14 @@
android:entries="@array/theme_type_titles"
android:entryValues="@array/theme_type_values"
android:defaultValue="1"/>
<ListPreference
android:key="switch_style"
android:icon="@drawable/ic_switch_theme"
android:title="@string/switch_style_title"
android:persistent="false"
android:entries="@array/switch_style_entries"
android:entryValues="@array/switch_style_values" />
</PreferenceCategory>