“导航抽屉”活动需要运行操作栏。但我希望我的启动画面和登录活动没有操作栏。测试此代码后,我的应用程序停止响应
new List(x,y,z)
答案 0 :(得分:0)
在Style.xml中为SplashScreen活动创建不同的样式
<style name="SplashTheme" parent="Theme.AppCompat.Light">
<item name="windowNoTitle">true</item>
<item name="windowActionBar">false</item>
<item name="android:windowFullscreen">true</item>
<item name="android:windowContentOverlay">@null</item>
</style>
并将该样式添加到您的启动活动中
<activity
android:name=".SplashScreen"
android:theme="@style/SplashTheme">
</activity>