summaryrefslogtreecommitdiffstats
path: root/app/src/main/res/layout/splash.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/layout/splash.xml')
-rw-r--r--app/src/main/res/layout/splash.xml23
1 files changed, 23 insertions, 0 deletions
diff --git a/app/src/main/res/layout/splash.xml b/app/src/main/res/layout/splash.xml
new file mode 100644
index 0000000..80eb4cd
--- /dev/null
+++ b/app/src/main/res/layout/splash.xml
@@ -0,0 +1,23 @@
+<LinearLayout
+ 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"
+ android:orientation="vertical">
+ <LinearLayout
+ android:id="@+id/main_body"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:padding="8dp"
+ android:background="#000000"
+ android:gravity="center_horizontal|center_vertical"
+ android:orientation="vertical">
+ <ImageView
+ android:id="@+id/icon_manager"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:src="@drawable/icon_manager"
+ android:scaleType="center"/>
+ </LinearLayout>
+</LinearLayout>