Forked from
Jilin Zheng / Group3Project
54 commits behind the upstream repository.
-
Jilin Zheng authoredJilin Zheng authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
home_screen.xml 2.69 KiB
<?xml version="1.0" encoding="utf-8"?>
<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"
android:background="@color/peach_background"
android:gravity="center"
tools:context=".HomeScreen">
<ImageView
android:id="@+id/homeScreenPic"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:layout_marginBottom="10dp"
android:src="@drawable/home_screen_ari"/>
<TextView
android:id="@+id/gameTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:layout_marginBottom="10dp"
android:fontFamily="@font/dbxlnightfever_normal"
android:text="ARI TETRISBURG"
android:textSize="55dp"
android:textAlignment="center"
android:textColor="@color/black"/>
<Button
android:id="@+id/playButton"
android:layout_width="250dp"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:layout_marginBottom="10dp"
android:backgroundTint="@color/lavender_btn"
android:fontFamily="@font/dbxlnightfever_normal"
android:text="PLAY"
android:textSize="30dp"/>
<Button
android:id="@+id/settingsButton"
android:layout_width="250dp"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:layout_marginBottom="10dp"
android:backgroundTint="@color/lavender_btn"
android:fontFamily="@font/dbxlnightfever_normal"
android:text="SETTINGS"
android:textSize="30dp"/>
<Button
android:id="@+id/rulesButton"
android:layout_width="250dp"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:layout_marginBottom="10dp"
android:backgroundTint="@color/lavender_btn"
android:fontFamily="@font/dbxlnightfever_normal"
android:text="RULES"
android:textSize="30dp"/>
<Button
android:id="@+id/scoreLeaderboardButton"
android:layout_width="250dp"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:layout_marginBottom="10dp"
android:backgroundTint="@color/lavender_btn"
android:fontFamily="@font/dbxlnightfever_normal"
android:text="Score Leaderboard"
android:textSize="30dp"/>
</LinearLayout>