我希望我的Application
子类选择是否需要直接启动Splashscreen
活动或Main
活动。
我的Application
子类是否可以在没有
action android:name="android.intent.action.MAIN"
category android:name="android.intent.category.LAUNCHER"
在Androidmanifest
?
答案 0 :(得分:0)
始终启动Splashscreen活动,但在onCreate中,编写决定是否显示启动画面或MainActivity的逻辑。如果您正在显示MainActivity,请致电
onCreate(...)
...
if (wantToShowSplash()) {
// ... code to show splash stuff here ...
} else {
startIntent(MainActivity.class);
finish();
}