Stopping Splash Screen to go under the navigation bar

别等时光非礼了梦想. 提交于 2019-12-06 04:04:52

Found one solution

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

to

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

Your @drawable/splashshould look something like this:

<?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>

Add this to the xml file of your splash screen activity.

<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>
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!