Android 启动APP 去掉标题栏

这个是全局设置:

 android:theme="@android:style/Theme.Light.NoTitleBar" 


这个是在Activity中设置:

 requestWindowFeature(Window.FEATURE_NO_TITLE);


这个是设置启动APP白屏的图片:


<style name="SplashTheme" parent="AppTheme">
    <item name="android:windowBackground">@drawable/welcome</item>
    <item name="android:windowFullscreen">true</item>
    <item name="windowNoTitle">true</item>
</style>

  


猜你喜欢

转载自blog.csdn.net/qq_33209777/article/details/80860323