How To Remove Initial Screen Android?
I make an application that its min SDK is API 14. However, when first launching the application, the app shows a screen with action bar contains application icon and application na
Solution 1:
Replace android:theme="@style/myTheme"
with android:theme="@android:style/Theme.Translucent"
in the application
tag in manifest and the first white screen won't appear. It will directly open your home activity
Post a Comment for "How To Remove Initial Screen Android?"