Layout Changes (#25)

Co-authored-by: fgerber <frederic.gerber@mydoli.ch>
Co-authored-by: soraefir <soraefir+git@pm.me>
Reviewed-on: helcel/beendroid#25
Co-authored-by: fgerber <fred@mydoli.ch>
Co-committed-by: fgerber <fred@mydoli.ch>
This commit is contained in:
2024-01-20 01:21:41 +01:00
committed by sora
parent c0cc1e5649
commit 3c1080e8c2
31 changed files with 668 additions and 287 deletions

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string-array name="entries_theme" >
<item>@string/system</item>
<item>@string/light</item>
<item>@string/dark</item>
</string-array>
</resources>

View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="purple_200">#FFBB86FC</color>
<color name="purple_500">#FF6200EE</color>
<color name="purple_700">#FF3700B3</color>
<color name="teal_200">#FF03AFFF</color>
<color name="teal_700">#FF0187FF</color>
<color name="yellowish">#FFFFDD00</color>
<color name="black">#FF000000</color>
<color name="darkgray">#FF555555</color>
<color name="lightgray">#FFBBBBBB</color>
<color name="white">#FFFFFFFF</color>
</resources>

View File

@ -1,8 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Beendroid</string>
<string name="app_name">BeenDroid</string>
<string name="app_version">1.0</string>
<string name="action_settings">Settings</string>
<string name="action_stats">Stats</string>
<string name="action_edit">Edit</string>
<string name="welcome">Welcome!</string>
<string name="change_lang">Change language</string>
<string name="key_theme">App theme</string>
<string name="system">System</string>
<string name="light">Light</string>
<string name="dark">Dark</string>
<string name="licenses">Licenses</string>
<string name="about">About</string>
<string name="beendroid_is_foss">BeenDroid is free and open source software, licensed under the GNU General Public License (version 3 or later)</string>
<string name="beendroid_repo">Project repository: https://git.helcel.net/helcel/beendroid\n Feel free to report issues or contribute to the project.</string>
<string name="foss_licenses">Free and open source dependencies and licenses</string>
<string name="about_beendroid">About the BeenDroid application</string>
</resources>

View File

@ -1,14 +1,9 @@
<resources xmlns:tools="http://schemas.android.com/tools">
<style name="Theme.Beendroid" parent="Theme.Material3.DayNight.NoActionBar">
<style name="Theme.Beendroid" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
<item name="colorPrimary">@color/teal_700</item>
<item name="android:colorPrimary">@color/teal_700</item>
<item name="android:panelColorBackground">@color/lightgray</item>
<item name="android:statusBarColor">?attr/colorPrimary</item>
<item name="colorAccent">?attr/colorPrimary</item>
</style>
<style name="Theme.Beendroid.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
<style name="Theme.Beendroid.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
<style name="Theme.Beendroid.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />
</resources>