aboutsummaryrefslogtreecommitdiffstats
path: root/app/src/main/res/layout
diff options
context:
space:
mode:
authorMaksymilian Jopek <maks@jopek.eu>2022-12-07 17:55:01 +0100
committerMaksymilian Jopek <maks@jopek.eu>2022-12-07 17:55:01 +0100
commitb6435529d98beb852c2df8def65cce4572468bcc (patch)
tree9365935f6691c2c1e4b7a768a3d55eb3b7802334 /app/src/main/res/layout
downloadpai-fillo-nai-b6435529d98beb852c2df8def65cce4572468bcc.tar.gz
pai-fillo-nai-b6435529d98beb852c2df8def65cce4572468bcc.tar.zst
pai-fillo-nai-b6435529d98beb852c2df8def65cce4572468bcc.zip
Initial commit,v1.0.1
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r--app/src/main/res/layout/activity_main.xml54
-rw-r--r--app/src/main/res/layout/activity_offline_game.xml403
-rw-r--r--app/src/main/res/layout/activity_online_game.xml133
3 files changed, 590 insertions, 0 deletions
diff --git a/app/src/main/res/layout/activity_main.xml b/app/src/main/res/layout/activity_main.xml
new file mode 100644
index 0000000..c0b4598
--- /dev/null
+++ b/app/src/main/res/layout/activity_main.xml
@@ -0,0 +1,54 @@
+<?xml version="1.0" encoding="utf-8"?>
+<androidx.constraintlayout.widget.ConstraintLayout 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"
+ tools:context=".MainActivity">
+<LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="vertical"
+ android:background="@mipmap/main_bg_foreground"
+ >
+ <TextView
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:layout_weight="1"
+ android:gravity="center"
+ android:text="Pai Fillo Nai"
+ android:textColor="@color/white"
+ android:textSize="60sp"/>
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:layout_weight="2"
+ android:padding="20dp"
+ >
+ <TextView
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:maxHeight="10dp"
+ android:layout_weight="1"
+ android:gravity="center"
+ android:text="ONLINE"
+ android:id="@+id/txtvOnline"
+ android:layout_margin="20dp"
+ android:textColor="#03A9F4"
+ android:background="@drawable/bg_rounded_rectangle"
+ android:textSize="30sp"/>
+ <TextView
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:maxHeight="10dp"
+ android:layout_weight="1"
+ android:gravity="center"
+ android:text="OFFLINE"
+ android:layout_margin="20dp"
+ android:textColor="#AAAAAA"
+ android:id="@+id/txtvOffline"
+ android:background="@drawable/bg_rounded_rectangle"
+ android:textSize="30sp"/>
+ </LinearLayout>
+</LinearLayout>
+</androidx.constraintlayout.widget.ConstraintLayout> \ No newline at end of file
diff --git a/app/src/main/res/layout/activity_offline_game.xml b/app/src/main/res/layout/activity_offline_game.xml
new file mode 100644
index 0000000..5fbae8b
--- /dev/null
+++ b/app/src/main/res/layout/activity_offline_game.xml
@@ -0,0 +1,403 @@
+<?xml version="1.0" encoding="utf-8"?>
+<androidx.constraintlayout.widget.ConstraintLayout 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"
+ xmlns:app="http://schemas.android.com/apk/res-auto"
+ android:background="@mipmap/bg_offline_game_foreground"
+ tools:context=".OfflineGameActivity">
+
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="vertical">
+
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="horizontal"
+ android:layout_weight="2">
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:layout_weight="2"
+ android:layout_marginStart="10dp"
+ android:layout_marginTop="10dp"
+ android:layout_marginBottom="10dp"
+ android:layout_marginEnd="5dp"
+ android:background="@drawable/bg_rounded_blue"
+ android:orientation="vertical">
+ <TextView
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:layout_weight="1"
+ android:textSize="19sp"
+ android:textColor="@color/white"
+ android:gravity="center"
+ android:textAlignment="center"
+ android:text="First\nPlayer (O)" />
+ <ImageView
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:id="@+id/p0Img"
+ android:src="@mipmap/bg_you_in_army"
+ android:layout_weight="1" />
+ </LinearLayout>
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:layout_weight="2"
+ android:layout_marginStart="10dp"
+ android:layout_marginTop="10dp"
+ android:layout_marginBottom="10dp"
+ android:layout_marginEnd="5dp"
+ android:background="@drawable/bg_rounded_blue"
+ android:orientation="vertical">
+ <TextView
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:layout_weight="1"
+ android:textSize="19sp"
+ android:textColor="@color/white"
+ android:gravity="center"
+ android:textAlignment="center"
+ android:text="Second\nPlayer (X)" />
+ <ImageView
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:id="@+id/p1Img"
+ android:src="@mipmap/bg_no_no"
+ android:layout_weight="1" />
+ </LinearLayout>
+ </LinearLayout>
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="vertical"
+ android:background="@drawable/bg_rounded_grey"
+ android:layout_margin="5dp"
+ android:layout_weight="1">
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:layout_weight="1"
+ android:padding="10dp">
+ <TextView
+ android:id="@+id/square0"
+ android:layout_width="120dp"
+ android:layout_height="120dp"
+ android:layout_marginTop="15dp"
+ android:layout_marginBottom="5dp"
+ android:layout_marginStart="-5dp"
+ android:layout_marginEnd="5dp"
+ android:background="@drawable/bg_rounded_blue"
+ android:gravity="center"
+ android:text="X"
+ android:textAlignment="center"
+ android:textSize="60sp" />
+ <TextView
+ android:id="@+id/square1"
+ android:layout_width="120dp"
+ android:layout_height="120dp"
+ android:layout_marginTop="15dp"
+ android:layout_marginBottom="5dp"
+ android:layout_marginStart="10dp"
+ android:layout_marginEnd="10dp"
+ android:background="@drawable/bg_rounded_blue"
+ android:gravity="center"
+ android:text="X"
+ android:textAlignment="center"
+ android:textSize="60sp" />
+ <TextView
+ android:id="@+id/square2"
+ android:layout_width="120dp"
+ android:layout_height="120dp"
+ android:layout_marginTop="15dp"
+ android:layout_marginBottom="5dp"
+ android:layout_marginStart="5dp"
+ android:layout_marginEnd="5dp"
+ android:background="@drawable/bg_rounded_blue"
+ android:gravity="center"
+ android:text="X"
+ android:textAlignment="center"
+ android:textSize="60sp" />
+ <!-- <ImageView-->
+ <!-- android:layout_width="match_parent"-->
+ <!-- android:layout_height="match_parent"-->
+ <!-- android:src="@mipmap/emptiness_foreground"-->
+ <!-- android:id="@+id/square0"-->
+ <!-- android:layout_marginTop="10dp"-->
+ <!-- android:layout_marginStart="10dp"-->
+ <!-- android:layout_marginEnd="10dp"-->
+ <!-- android:layout_marginBottom="5dp"-->
+ <!-- android:layout_weight="1" />-->
+ <!-- <ImageView-->
+ <!-- android:layout_width="match_parent"-->
+ <!-- android:layout_height="match_parent"-->
+ <!-- android:src="@mipmap/emptiness_foreground"-->
+ <!-- android:id="@+id/square1"-->
+ <!-- android:layout_marginTop="10dp"-->
+ <!-- android:layout_marginStart="10dp"-->
+ <!-- android:layout_marginEnd="10dp"-->
+ <!-- android:layout_marginBottom="5dp"-->
+ <!-- android:layout_weight="1" />-->
+ <!-- <ImageView-->
+ <!-- android:layout_width="match_parent"-->
+ <!-- android:layout_height="match_parent"-->
+ <!-- android:src="@mipmap/emptiness_foreground"-->
+ <!-- android:id="@+id/square2"-->
+ <!-- android:layout_marginTop="10dp"-->
+ <!-- android:layout_marginStart="10dp"-->
+ <!-- android:layout_marginEnd="10dp"-->
+ <!-- android:layout_marginBottom="5dp"-->
+ <!-- android:layout_weight="1" />-->
+ </LinearLayout>
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:layout_weight="1"
+ android:padding="10dp">
+ <TextView
+ android:id="@+id/square3"
+ android:layout_width="120dp"
+ android:layout_height="120dp"
+ android:layout_marginTop="15dp"
+ android:layout_marginBottom="5dp"
+ android:layout_marginStart="-5dp"
+ android:layout_marginEnd="5dp"
+ android:background="@drawable/bg_rounded_blue"
+ android:gravity="center"
+ android:text="X"
+ android:textAlignment="center"
+ android:textSize="60sp" />
+ <TextView
+ android:id="@+id/square4"
+ android:layout_width="120dp"
+ android:layout_height="120dp"
+ android:layout_marginTop="15dp"
+ android:layout_marginBottom="5dp"
+ android:layout_marginStart="10dp"
+ android:layout_marginEnd="10dp"
+ android:background="@drawable/bg_rounded_blue"
+ android:gravity="center"
+ android:text="X"
+ android:textAlignment="center"
+ android:textSize="60sp" />
+ <TextView
+ android:id="@+id/square5"
+ android:layout_width="120dp"
+ android:layout_height="120dp"
+ android:layout_marginTop="15dp"
+ android:layout_marginBottom="5dp"
+ android:layout_marginStart="5dp"
+ android:layout_marginEnd="5dp"
+ android:background="@drawable/bg_rounded_blue"
+ android:gravity="center"
+ android:text="X"
+ android:textAlignment="center"
+ android:textSize="60sp" />
+ </LinearLayout>
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:layout_weight="1"
+ android:padding="10dp">
+ <TextView
+ android:id="@+id/square6"
+ android:layout_width="120dp"
+ android:layout_height="120dp"
+ android:layout_marginTop="15dp"
+ android:layout_marginBottom="5dp"
+ android:layout_marginStart="-5dp"
+ android:layout_marginEnd="5dp"
+ android:background="@drawable/bg_rounded_blue"
+ android:gravity="center"
+ android:text="X"
+ android:textAlignment="center"
+ android:textSize="60sp" />
+ <TextView
+ android:id="@+id/square7"
+ android:layout_width="120dp"
+ android:layout_height="120dp"
+ android:layout_marginTop="15dp"
+ android:layout_marginBottom="5dp"
+ android:layout_marginStart="10dp"
+ android:layout_marginEnd="10dp"
+ android:background="@drawable/bg_rounded_blue"
+ android:gravity="center"
+ android:text="X"
+ android:textAlignment="center"
+ android:textSize="60sp" />
+ <TextView
+ android:id="@+id/square8"
+ android:layout_width="120dp"
+ android:layout_height="120dp"
+ android:layout_marginTop="15dp"
+ android:layout_marginBottom="5dp"
+ android:layout_marginStart="5dp"
+ android:layout_marginEnd="5dp"
+ android:background="@drawable/bg_rounded_blue"
+ android:gravity="center"
+ android:text="X"
+ android:textAlignment="center"
+ android:textSize="60sp" />
+ </LinearLayout>
+ </LinearLayout>
+ </LinearLayout>
+</androidx.constraintlayout.widget.ConstraintLayout>
+
+ <!--<?xml version="1.0" encoding="utf-8"?>-->
+<!--<androidx.constraintlayout.widget.ConstraintLayout 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"-->
+<!-- android:background="@mipmap/bg_offline_game_foreground"-->
+<!-- tools:context=".OfflineGameActivity">-->
+
+<!-- <LinearLayout-->
+<!-- android:layout_width="match_parent"-->
+<!-- android:layout_height="match_parent"-->
+<!-- android:orientation="vertical">-->
+
+<!-- <LinearLayout-->
+<!-- android:layout_width="match_parent"-->
+<!-- android:layout_height="match_parent"-->
+<!-- android:layout_weight="2">-->
+<!-- <LinearLayout-->
+<!-- android:layout_width="match_parent"-->
+<!-- android:layout_height="match_parent"-->
+<!-- android:layout_weight="2"-->
+<!-- android:layout_margin="20dp"-->
+<!-- android:background="@drawable/bg_rounded_blue"-->
+<!-- android:orientation="vertical">-->
+<!-- <TextView-->
+<!-- android:layout_width="match_parent"-->
+<!-- android:layout_height="match_parent"-->
+<!-- android:layout_weight="1"-->
+<!-- android:textSize="30sp"-->
+<!-- android:textColor="@color/white"-->
+<!-- android:gravity="center"-->
+<!-- android:textAlignment="center"-->
+<!-- android:text="First\nPlayer (O)" />-->
+<!-- <ImageView-->
+<!-- android:layout_width="match_parent"-->
+<!-- android:layout_height="match_parent"-->
+<!-- android:id="@+id/p0Img"-->
+<!-- android:src="@mipmap/bg_you_in_army"-->
+<!-- android:layout_weight="1" />-->
+<!-- </LinearLayout>-->
+<!-- <LinearLayout-->
+<!-- android:layout_width="match_parent"-->
+<!-- android:layout_height="match_parent"-->
+<!-- android:layout_weight="2"-->
+<!-- android:layout_margin="20dp"-->
+<!-- android:background="@drawable/bg_rounded_blue"-->
+<!-- android:orientation="vertical">-->
+<!-- <TextView-->
+<!-- android:layout_width="match_parent"-->
+<!-- android:layout_height="match_parent"-->
+<!-- android:layout_weight="1"-->
+<!-- android:textSize="30sp"-->
+<!-- android:textColor="@color/white"-->
+<!-- android:gravity="center"-->
+<!-- android:textAlignment="center"-->
+<!-- android:text="Second Player (X)" />-->
+<!-- <ImageView-->
+<!-- android:layout_width="match_parent"-->
+<!-- android:layout_height="match_parent"-->
+<!-- android:id="@+id/p1Img"-->
+<!-- android:src="@mipmap/bg_no_no_foreground"-->
+<!-- android:layout_weight="1" />-->
+<!-- </LinearLayout>-->
+<!-- </LinearLayout>-->
+<!-- <LinearLayout-->
+<!-- android:layout_width="match_parent"-->
+<!-- android:layout_height="match_parent"-->
+<!-- android:orientation="vertical"-->
+<!-- android:background="@drawable/bg_rounded_grey"-->
+<!-- android:layout_margin="5dp"-->
+<!-- android:layout_weight="1">-->
+<!-- <LinearLayout-->
+<!-- android:layout_width="match_parent"-->
+<!-- android:layout_height="match_parent"-->
+<!-- android:layout_weight="1"-->
+<!-- android:padding="10dp">-->
+<!-- <ImageView-->
+<!-- android:layout_width="match_parent"-->
+<!-- android:layout_height="match_parent"-->
+<!-- android:src="@mipmap/emptiness_foreground"-->
+<!-- android:id="@+id/square0"-->
+<!-- android:layout_margin="10dp"-->
+<!-- android:layout_weight="1" />-->
+<!-- <ImageView-->
+<!-- android:layout_width="match_parent"-->
+<!-- android:layout_height="match_parent"-->
+<!-- android:src="@mipmap/emptiness_foreground"-->
+<!-- android:id="@+id/square1"-->
+<!-- android:layout_margin="10dp"-->
+<!-- android:layout_weight="1" />-->
+<!-- <ImageView-->
+<!-- android:layout_width="match_parent"-->
+<!-- android:layout_height="match_parent"-->
+<!-- android:src="@mipmap/emptiness_foreground"-->
+<!-- android:id="@+id/square2"-->
+<!-- android:layout_margin="10dp"-->
+<!-- android:layout_weight="1" />-->
+<!-- </LinearLayout>-->
+<!-- <LinearLayout-->
+<!-- android:layout_width="match_parent"-->
+<!-- android:layout_height="match_parent"-->
+<!-- android:layout_weight="1"-->
+<!-- android:padding="10dp">-->
+<!-- <ImageView-->
+<!-- android:layout_width="match_parent"-->
+<!-- android:layout_height="match_parent"-->
+<!-- android:src="@mipmap/emptiness_foreground"-->
+<!-- android:id="@+id/square3"-->
+<!-- android:layout_margin="10dp"-->
+<!-- android:layout_weight="1" />-->
+<!-- <ImageView-->
+<!-- android:layout_width="match_parent"-->
+<!-- android:layout_height="match_parent"-->
+<!-- android:src="@mipmap/emptiness_foreground"-->
+<!-- android:id="@+id/square4"-->
+<!-- android:layout_margin="10dp"-->
+<!-- android:layout_weight="1" />-->
+<!-- <ImageView-->
+<!-- android:layout_width="match_parent"-->
+<!-- android:layout_height="match_parent"-->
+<!-- android:src="@mipmap/emptiness_foreground"-->
+<!-- android:id="@+id/square5"-->
+<!-- android:layout_margin="10dp"-->
+<!-- android:layout_weight="1" />-->
+<!-- </LinearLayout>-->
+<!-- <LinearLayout-->
+<!-- android:layout_width="match_parent"-->
+<!-- android:layout_height="match_parent"-->
+<!-- android:layout_weight="1"-->
+<!-- android:padding="10dp">-->
+<!-- <ImageView-->
+<!-- android:layout_width="match_parent"-->
+<!-- android:layout_height="match_parent"-->
+<!-- android:src="@mipmap/emptiness_foreground"-->
+<!-- android:id="@+id/square6"-->
+<!-- android:layout_margin="10dp"-->
+<!-- android:layout_weight="1" />-->
+<!-- <ImageView-->
+<!-- android:layout_width="match_parent"-->
+<!-- android:layout_height="match_parent"-->
+<!-- android:src="@mipmap/emptiness_foreground"-->
+<!-- android:id="@+id/square7"-->
+<!-- android:layout_margin="10dp"-->
+<!-- android:layout_weight="1" />-->
+<!-- <ImageView-->
+<!-- android:layout_width="match_parent"-->
+<!-- android:layout_height="match_parent"-->
+<!-- android:src="@mipmap/emptiness_foreground"-->
+<!-- android:id="@+id/square8"-->
+<!-- android:layout_margin="10dp"-->
+<!-- android:layout_weight="1" />-->
+<!-- </LinearLayout>-->
+<!-- </LinearLayout>-->
+<!-- </LinearLayout>-->
+<!--</androidx.constraintlayout.widget.ConstraintLayout>--> \ No newline at end of file
diff --git a/app/src/main/res/layout/activity_online_game.xml b/app/src/main/res/layout/activity_online_game.xml
new file mode 100644
index 0000000..d9ccef3
--- /dev/null
+++ b/app/src/main/res/layout/activity_online_game.xml
@@ -0,0 +1,133 @@
+<?xml version="1.0" encoding="utf-8"?>
+<androidx.constraintlayout.widget.ConstraintLayout 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"
+ android:background="@mipmap/bg_offline_game_foreground"
+ tools:context=".OfflineGameActivity">
+
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="vertical">
+
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:layout_weight="2">
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:layout_weight="2"
+ android:layout_margin="20dp"
+ android:background="@drawable/bg_rounded_blue"
+ android:orientation="vertical">
+ <TextView
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:layout_weight="1"
+ android:textSize="30sp"
+ android:textColor="@color/white"
+ android:gravity="center"
+ android:id="@+id/onPlayerName"
+ android:textAlignment="center"
+ android:text="Second Player (X)" />
+ <ImageView
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:id="@+id/p0Img"
+ android:src="@mipmap/bg_no_no_foreground"
+ android:layout_weight="1" />
+ </LinearLayout>
+ </LinearLayout>
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="vertical"
+ android:background="@drawable/bg_rounded_grey"
+ android:layout_margin="5dp"
+ android:layout_weight="1">
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:layout_weight="1"
+ android:padding="10dp">
+ <ImageView
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:src="@mipmap/emptiness_foreground"
+ android:id="@+id/square0"
+ android:layout_margin="10dp"
+ android:layout_weight="1" />
+ <ImageView
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:src="@mipmap/emptiness_foreground"
+ android:id="@+id/square1"
+ android:layout_margin="10dp"
+ android:layout_weight="1" />
+ <ImageView
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:src="@mipmap/emptiness_foreground"
+ android:id="@+id/square2"
+ android:layout_margin="10dp"
+ android:layout_weight="1" />
+ </LinearLayout>
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:layout_weight="1"
+ android:padding="10dp">
+ <ImageView
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:src="@mipmap/emptiness_foreground"
+ android:id="@+id/square3"
+ android:layout_margin="10dp"
+ android:layout_weight="1" />
+ <ImageView
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:src="@mipmap/emptiness_foreground"
+ android:id="@+id/square4"
+ android:layout_margin="10dp"
+ android:layout_weight="1" />
+ <ImageView
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:src="@mipmap/emptiness_foreground"
+ android:id="@+id/square5"
+ android:layout_margin="10dp"
+ android:layout_weight="1" />
+ </LinearLayout>
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:layout_weight="1"
+ android:padding="10dp">
+ <ImageView
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:src="@mipmap/emptiness_foreground"
+ android:id="@+id/square6"
+ android:layout_margin="10dp"
+ android:layout_weight="1" />
+ <ImageView
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:src="@mipmap/emptiness_foreground"
+ android:id="@+id/square7"
+ android:layout_margin="10dp"
+ android:layout_weight="1" />
+ <ImageView
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:src="@mipmap/emptiness_foreground"
+ android:id="@+id/square8"
+ android:layout_margin="10dp"
+ android:layout_weight="1" />
+ </LinearLayout>
+ </LinearLayout>
+ </LinearLayout>
+</androidx.constraintlayout.widget.ConstraintLayout> \ No newline at end of file