-
Notifications
You must be signed in to change notification settings - Fork 0
/
Main_Page.java
30 lines (26 loc) · 1.07 KB
/
Main_Page.java
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
<?xml version="1.0" encoding="utf-8"?>
<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="com.example.android.acethetest.Main_Page">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:src="@drawable/constitution_government" />
<Button
android:id="@+id/enter_button"
style="?android:attr/borderlessButtonStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="120dp"
android:fontFamily="@font/playball"
android:text="enter: your test awaits!"
android:textAllCaps="true"
android:textColor="#000000"
android:textSize="25sp"
android:textStyle="bold" />
</RelativeLayout>