diff options
author | Michael Weghorn <m.weghorn@posteo.de> | 2023-11-29 10:53:45 +0100 |
---|---|---|
committer | Michael Weghorn <m.weghorn@posteo.de> | 2023-11-30 12:17:22 +0100 |
commit | fa1f867caca9e5c6c0dbd4bcaf096f27077f363d (patch) | |
tree | e6270bfdd67c09a3cee888cd8f6f0fa8c1d5b0d6 /android/source | |
parent | c82a594da3189fe82052f8081fda16e9e3cb0c0f (diff) |
tdf#124480 android: Set bg color for calc formula bar
For the layout containing the Calc address/formula bar,
explicitly set a background color that matches the theme.
Otherwise, those text views would be using white font on
white background when using dark theme, making the text
unreadable.
Change-Id: I5fdf9e04f8bb331ca6a57bf3046a7ebb9ccb0d1f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160078
Tested-by: Jenkins
Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
Diffstat (limited to 'android/source')
-rw-r--r-- | android/source/res/layout/activity_main.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/android/source/res/layout/activity_main.xml b/android/source/res/layout/activity_main.xml index 590a7de025b4..e503cb90f0eb 100644 --- a/android/source/res/layout/activity_main.xml +++ b/android/source/res/layout/activity_main.xml @@ -36,7 +36,8 @@ <LinearLayout android:layout_width="match_parent" - android:layout_height="wrap_content"> + android:layout_height="wrap_content" + android:background="@color/background_floating"> <EditText android:id="@+id/calc_address" |