Fixed splashscreen load text being in black on darkmode
This commit is contained in:
parent
103a69e231
commit
b5e20cb8b7
4 changed files with 12 additions and 6 deletions
|
@ -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>
|
||||
|
||||
|
|
|
@ -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>
|
|
@ -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>
|
|
@ -1,3 +1,4 @@
|
|||
<resources>
|
||||
<string name="app_name">Vendroid</string>
|
||||
<string name="splashscreen_text">Loading Vendroid…</string>
|
||||
</resources>
|
Loading…
Reference in a new issue