繁体   English   中英

停止启动画面进入导航栏

[英]Stopping Splash Screen to go under the navigation bar

我想使用这个启动画面但它继续在导航栏下面。

飞溅img

如何在保持导航栏的同时强制它适合屏幕?

   <style name="splashScreenTheme" parent="@android:style/Theme.DeviceDefault.Light.NoActionBar.Fullscreen">

    <item name="android:windowBackground">@drawable/splash</item>

</style>

找到一个解决方案

 <item name="android:windowBackground">@drawable/splash</item>

 <item name="android:background">@drawable/splash</item>    

你的@drawable/splash应该是这样的:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">

<item
    android:drawable="@color/black"/>

<item>
    <bitmap
        android:gravity="center"
        android:src="@drawable/your_image" />
</item>

将其添加到启动画面活动的xml文件中。

<FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <ImageView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:src="@drawable/splash"/>
    </FrameLayout>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM