diff options
author | xC3FFF0E <78732474+xC3FFF0E@users.noreply.github.com> | 2021-02-08 15:38:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-08 15:38:13 +0100 |
commit | d350f05cc1fd39bf2ce377d0c1e04831e2f7b68f (patch) | |
tree | 86afb22b777929084bf357c439ba2124ef70be95 /res/layout/splash.xml | |
parent | Create a (diff) | |
download | xManager-d350f05cc1fd39bf2ce377d0c1e04831e2f7b68f.tar xManager-d350f05cc1fd39bf2ce377d0c1e04831e2f7b68f.tar.gz xManager-d350f05cc1fd39bf2ce377d0c1e04831e2f7b68f.tar.bz2 xManager-d350f05cc1fd39bf2ce377d0c1e04831e2f7b68f.tar.lz xManager-d350f05cc1fd39bf2ce377d0c1e04831e2f7b68f.tar.xz xManager-d350f05cc1fd39bf2ce377d0c1e04831e2f7b68f.tar.zst xManager-d350f05cc1fd39bf2ce377d0c1e04831e2f7b68f.zip |
Diffstat (limited to '')
-rw-r--r-- | res/layout/splash.xml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/res/layout/splash.xml b/res/layout/splash.xml new file mode 100644 index 0000000..a8cc876 --- /dev/null +++ b/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_logo"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:src="@drawable/icon_x"
+ android:scaleType="center"/>
+ </LinearLayout>
+</LinearLayout>
|