Scusa la tentazione era troppo forte. ???
Come hai descritto tu stesso e quindi ... la questione è nel tema che hai scelto (o non scelto) nel Manifest.
Ogni versine ha un suo Tema (Theme) predefinito (default), quindi non scegliendo (o creando) nessun Tema specifico, lui usa quello di default (predefinito) della versione.
(Ora non ti saprei dire se sceglie quello di default della versione minima o della versione target, piuttosto che scegliere quello di default della versione installata sul dispositivo.)
Ti darò un'altra risposta scontata:
La funzione ricerca nel forum è ancora funzionante...usala. ? ? ?
Ma per essere buono visto che hai cambiato l'avatar che mi sembra molto più bello, ti segnalo dei link dove trovare indicazioni per modificare il Theme (o Tema).
Changing the action bar, status bar and navigation bar colors is done with resources set in the manifest editor. The following code is fully supported by Android 5+ devices but it will also work properly on Android 4 devices. The manifest code: SetApplicationAttribute(android:theme...
www.b4x.com
Setting these two attributes will cause your app to run in full screen: #FullScreen: true #IncludeTitle: false However the action bar will appear for a short moment when your app starts. You can use this theme to prevent it from appearing: SetApplicationAttribute(android:theme...
www.b4x.com
I made a custom title bar. In the title bar are two imageviews next to each other and one textview beneath it. It works fine but I just see the top of the textview. So I think the title bar get cro...
stackoverflow.com
Using the hooks feature it is possible to change the Activity theme at runtime. The theme is set before the activity is actually shown. This means that in order to change the theme we need to destroy the activity and start it again. You can use StateManager to save the activity state. The...
www.b4x.com
Add to manifest editor: SetApplicationAttribute(android:theme, "@style/LightTheme") CreateResource(values, theme.xml, 40dp ) Remove: CreateResourceFromFile(Macro, Themes.DarkTheme) 'or LightTheme
www.b4x.com