mirror of
https://github.com/oxen-io/session-android.git
synced 2025-02-17 17:48:26 +00:00
![Moxie Marlinspike](/assets/img/avatar_default.png)
1) Broke out the UI elements of the major Activites into stylable attributes. 2) Created a 'light' and 'dark' theme for the newly stylable attrs. 3) Touched up some of the UI spacing. 4) Implemented dynamic theme switching support.
52 lines
1.5 KiB
XML
52 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<resources>
|
|
|
|
<string-array name="minutes_hours">
|
|
<item>@string/preferences__minutes</item>
|
|
<item>@string/preferences__hours</item>
|
|
</string-array>
|
|
|
|
<string-array name="pref_theme_entries">
|
|
<item>@string/preferences__light_theme</item>
|
|
<item>@string/preferences__dark_theme</item>
|
|
</string-array>
|
|
|
|
<string-array name="pref_theme_values" translatable="false">
|
|
<item>light</item>
|
|
<item>dark</item>
|
|
</string-array>
|
|
|
|
<string-array name="pref_led_color_entries">
|
|
<item>@string/preferences__green</item>
|
|
<item>@string/preferences__red</item>
|
|
<item>@string/preferences__blue</item>
|
|
<item>@string/preferences__orange</item>
|
|
<item>@string/preferences__cyan</item>
|
|
<item>@string/preferences__magenta</item>
|
|
</string-array>
|
|
|
|
|
|
<string-array name="pref_led_color_values" translatable="false">
|
|
<item>green</item>
|
|
<item>red</item>
|
|
<item>blue</item>
|
|
<item>yellow</item>
|
|
<item>cyan</item>
|
|
<item>magenta</item>
|
|
</string-array>
|
|
|
|
<string-array name="pref_led_blink_pattern_entries">
|
|
<item>@string/preferences__fast</item>
|
|
<item>@string/preferences__normal</item>
|
|
<item>@string/preferences__slow</item>
|
|
<item>@string/preferences__custom</item>
|
|
</string-array>
|
|
<string-array name="pref_led_blink_pattern_values"
|
|
translatable="false">
|
|
<item>300,300</item>
|
|
<item>500,2000</item>
|
|
<item>3000,3000</item>
|
|
<item>custom</item>
|
|
</string-array>
|
|
|
|
</resources> |