-
Notifications
You must be signed in to change notification settings - Fork 0
/
activity_splash.xml
32 lines (30 loc) · 1.25 KB
/
activity_splash.xml
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
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="net.androidbootcamp.hotfoot.Splash"
android:focusableInTouchMode="false"
android:background="#FFFFFF">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/imgLogo"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true"
android:src="@drawable/hootfoot_logo"
android:contentDescription="@string/imgLogo" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/txtTitle"
android:id="@+id/txtTitle"
android:layout_below="@+id/imgLogo"
android:layout_centerHorizontal="true"
android:layout_alignRight="@+id/imgLogo"
android:layout_alignLeft="@+id/imgLogo"
android:gravity="center"
android:textSize="22sp"
android:typeface="sans"
android:textScaleX="2.5"
android:textIsSelectable="false"
android:contentDescription="@string/txtTitle" />
</RelativeLayout>