0
点赞
收藏
分享

微信扫一扫

Android 5.0设置全屏无标题

微笑沉默 2022-07-27 阅读 47


在style.xml中定义:

<style name="FullScreenTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="android:windowFullscreen">true</item>
</style>

使用:

<activity android:name=".ui.SplashActivity" android:screenOrientation="portrait"
android:theme="@style/FullScreenTheme"


举报

相关推荐

0 条评论