How to add a full-screen Image on splash screen | Android

Hello, I buy RocketWeb from codecanyon and set up the project but don’t found any way to set full-screen splash image.

At first, set your image in the Drawable folder. Remember that the image fine must be PNG with the name “splash.png”

After that add this line of code at the bottom under RelativeLayout in SplashActivity.kt

Please notice if you have this line remove it. android:visibility=”gone”

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

Leave a Reply