Hi, i need load the theme when start app, i see to launch theme in manifest :
is possible launch diferent theme depend of variable from program ??
i test to launch with:
but... _onCreate() start before Activity_create
B4X:
SetApplicationAttribute(android:theme, "@style/clasictheme")
is possible launch diferent theme depend of variable from program ??
i test to launch with:
B4X:
#if java
public void _onCreate() {
if (_theme_value != 0)
setTheme(_theme_value);
}
but... _onCreate() start before Activity_create