如何添加和删除操作栏

时间:2019-02-05 01:21:59

标签: java android android-studio mobile

“导航抽屉”活动需要运行操作栏。但我希望我的启动画面和登录活动没有操作栏。测试此代码后,我的应用程序停止响应

new List(x,y,z)

1 个答案:

答案 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>