Android theme is not getting reset dynamically after splash screen ends
I am implementing splash screen in my android application, for that I created a drawable resource, then in themes.xml added following
@drawable/splash_screen_background
@color/colorBlack
Afterwards made following change in AndroidManifest.xml file
android:theme="@style/splashScreenTheme">
and then in MainActivity.kt I tried following 2 ways to reset the theme dynamically one at each time and then together as well
Method 1
override fun onCreate(savedInstanceState:...