Android Question Menu with very low contrast [solved]

Didier9

Well-Known Member
Licensed User
Longtime User
For some reason, the menu on Android 9 is suddenly almost all grey. On Android 5, 6, 7 and 10 it has normal contrast.
The phones are generally configured the same (I do not mess with themes)
I have attached screen shots for Android 9 and 10. Screenshot_Android 9.png Screenshot_Android 10.png

Here is the part of the manifest that may have something to do with this
B4X:
AddManifestText(
<uses-sdk android:minSdkVersion="5" android:targetSdkVersion="26"/>
<supports-screens android:largeScreens="true"
    android:normalScreens="true"
    android:smallScreens="true"
    android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
SetApplicationAttribute(android:theme, "@android:style/Theme.Holo")
'End of default text.
SetActivityAttribute(main, android:windowSoftInputMode, adjustResize|stateHidden)
 
Top