1
0
Fork 0

Fixed splashscreen load text being in black on darkmode

This commit is contained in:
nin0dev 2024-03-23 08:56:08 -04:00
parent 103a69e231
commit b5e20cb8b7
4 changed files with 12 additions and 6 deletions

View file

@ -24,10 +24,9 @@
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="20dp"
android:text="Loading Vendroid..."
android:textAppearance="@android:style/TextAppearance.Material.Display1"
android:textColor="?android:attr/colorForeground"
android:textSize="24sp" />
android:text="@string/splashscreen_text"
android:textColor="@color/splash_text"
android:textSize="22sp" />
</LinearLayout>

View file

@ -1,2 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<resources><color name="background">#363942</color></resources>
<resources>
<color name="background">#363942</color>
<color name="splash_text">#ffffff</color>
</resources>

View file

@ -1,2 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<resources><color name="background">#FFFFFF</color></resources>
<resources>
<color name="background">#FFFFFF</color>
<color name="splash_text">#000000</color>
</resources>

View file

@ -1,3 +1,4 @@
<resources>
<string name="app_name">Vendroid</string>
<string name="splashscreen_text">Loading Vendroid&#8230;</string>
</resources>