summaryrefslogtreecommitdiffstats
path: root/app/src/main/res/layout/splash.xml
blob: f54283889edd44251f83f7c08f09eb0501ec77d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<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="#171717"
		android:gravity="center_horizontal|center_vertical"
		android:orientation="vertical">
		<ImageView
			android:id="@+id/icon_splash"
			android:layout_width="wrap_content"
			android:layout_height="wrap_content"
			android:src="@drawable/splash"
			android:scaleType="center"
			android:scaleX="0.75"
			android:scaleY="0.75" />
		<TextView
			android:id="@+id/title_splash"
			android:layout_width="wrap_content"
			android:layout_height="wrap_content"
			android:padding="8dp"
			android:text="xManager"
			android:textSize="25sp"
			android:textStyle="bold"
			android:textColor="#FFFFFF"
			android:translationY="-50.0dp" />
	</LinearLayout>
</LinearLayout>