start with light/dark theme depending on system theme

This commit is contained in:
adbenitez
2023-03-27 16:33:00 -04:00
parent 1421cb41df
commit bae052d735
3 changed files with 17 additions and 1 deletions
+1 -1
View File
@@ -105,7 +105,7 @@
<activity android:name=".ConversationListActivity"
android:label="@string/app_name"
android:launchMode="singleTask"
android:theme="@style/TextSecure.LightNoActionBar"
android:theme="@style/TextSecure.Splash"
android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout|screenSize"
android:exported="true" />
+8
View File
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<style name="TextSecure.Splash" parent="@style/TextSecure.DarkNoActionBar">
</style>
</resources>
+8
View File
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<style name="TextSecure.Splash" parent="@style/TextSecure.LightNoActionBar">
</style>
</resources>