- paste the image you will use to Drawable folder so you can find it by path
- res>layout>Activity-main.xml this it the flie we design our app in
- RelativeLayout means that all design items is related to the frame
- make the layout fill all screen width and hight
android:layout_width="match_parent"
android:layout_height="match_parent"
- give the image path
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
android:background="#3b5998"
>
<ImageView
android:layout_width="200dp"
android:layout_height="100dp"
android:src="@drawable/facebook"
android:layout_centerInParent="true"
>
</ImageView>
</RelativeLayout >
Create facebook splash by native android code

[React Native - Environment Setup]