mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-23 18:15:22 +00:00
Fix preference divider crash on KitKat
Closes #6546 Fixes #6544 // FREEBIE
This commit is contained in:
parent
9c5fe77e96
commit
9716849bb9
19
res/drawable/preference_divider_dark.xml
Normal file
19
res/drawable/preference_divider_dark.xml
Normal file
@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<item>
|
||||
<shape>
|
||||
<padding android:top="1dp" android:right="0dp" android:bottom="0dp" android:left="0dp" />
|
||||
<solid android:color="#101010" />
|
||||
</shape>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<shape>
|
||||
<padding android:top="1dp" android:right="0dp" android:bottom="0dp" android:left="0dp" />
|
||||
<solid android:color="#222222" />
|
||||
<size android:height="20dp"/>
|
||||
</shape>
|
||||
</item>
|
||||
|
||||
</layer-list>
|
@ -4,14 +4,14 @@
|
||||
<item>
|
||||
<shape>
|
||||
<padding android:top="1dp" android:right="0dp" android:bottom="0dp" android:left="0dp" />
|
||||
<solid android:color="?preference_divider_background_dark" />
|
||||
<solid android:color="#d4d4d4" />
|
||||
</shape>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<shape>
|
||||
<padding android:top="1dp" android:right="0dp" android:bottom="0dp" android:left="0dp" />
|
||||
<solid android:color="?preference_divider_background_light" />
|
||||
<solid android:color="#dddddd" />
|
||||
<size android:height="20dp"/>
|
||||
</shape>
|
||||
</item>
|
@ -9,6 +9,6 @@
|
||||
<View
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="10dp"
|
||||
android:background="@drawable/preference_divider"/>
|
||||
android:background="?pref_divider"/>
|
||||
|
||||
</LinearLayout>
|
@ -125,8 +125,7 @@
|
||||
<attr name="pref_ic_devices" format="reference" />
|
||||
<attr name="pref_ic_advanced" format="reference" />
|
||||
|
||||
<attr name="preference_divider_background_light" format="color" />
|
||||
<attr name="preference_divider_background_dark" format="color"/>
|
||||
<attr name="pref_divider" format="reference" />
|
||||
|
||||
<attr name="app_protect_timeout_picker_color" format="reference"/>
|
||||
|
||||
|
@ -216,8 +216,7 @@
|
||||
<item name="pref_ic_devices">@drawable/ic_laptop_black_24dp</item>
|
||||
<item name="pref_ic_advanced">@drawable/ic_advanced_black_24dp</item>
|
||||
|
||||
<item name="preference_divider_background_light">#dddddd</item>
|
||||
<item name="preference_divider_background_dark">#d4d4d4</item>
|
||||
<item name="pref_divider">@drawable/preference_divider_light</item>
|
||||
|
||||
<item name="app_protect_timeout_picker_color">@style/BetterPickersDialogFragment.Light</item>
|
||||
|
||||
@ -349,8 +348,7 @@
|
||||
<item name="pref_ic_devices">@drawable/ic_laptop_white_24dp</item>
|
||||
<item name="pref_ic_advanced">@drawable/ic_advanced_white_24dp</item>
|
||||
|
||||
<item name="preference_divider_background_light">#222222</item>
|
||||
<item name="preference_divider_background_dark">#101010</item>
|
||||
<item name="pref_divider">@drawable/preference_divider_dark</item>
|
||||
|
||||
<item name="app_protect_timeout_picker_color">@style/BetterPickersDialogFragment</item>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user