Advertisement
mmayoub

Game15, activity_main.xml

Jan 20th, 2023 (edited)
1,090
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 6.87 KB | Software | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    xmlns:app="http://schemas.android.com/apk/res-auto"
  4.    xmlns:tools="http://schemas.android.com/tools"
  5.    android:layout_width="match_parent"
  6.    android:layout_height="match_parent"
  7.    tools:context=".MainActivity">
  8.  
  9.     <Button
  10.        android:id="@+id/btnPlayAgain"
  11.        android:layout_width="wrap_content"
  12.        android:layout_height="wrap_content"
  13.        android:onClick="restart"
  14.        android:text="Play Again"
  15.        app:layout_constraintBottom_toBottomOf="parent"
  16.        app:layout_constraintEnd_toEndOf="parent"
  17.        app:layout_constraintStart_toStartOf="parent"
  18.        app:layout_constraintTop_toTopOf="parent" />
  19.  
  20.     <TableLayout
  21.        android:id="@+id/tableLayout"
  22.        android:layout_width="0dp"
  23.        android:layout_height="wrap_content"
  24.        app:layout_constraintEnd_toEndOf="parent"
  25.        app:layout_constraintStart_toStartOf="parent"
  26.        app:layout_constraintTop_toTopOf="parent">
  27.  
  28.         <TableRow
  29.            android:layout_width="match_parent"
  30.            android:layout_height="match_parent"
  31.            android:gravity="center">
  32.  
  33.             <TextView
  34.                android:id="@+id/textView"
  35.                android:layout_width="match_parent"
  36.                android:layout_height="wrap_content"
  37.                android:layout_gravity="center"
  38.                android:gravity="center"
  39.                android:onClick="orderTheBoard"
  40.                android:text="Game 15"
  41.                android:textAlignment="center"
  42.                android:textSize="34sp" />
  43.         </TableRow>
  44.  
  45.         <TableRow
  46.            android:layout_width="match_parent"
  47.            android:layout_height="match_parent">
  48.  
  49.             <Button
  50.                android:id="@+id/button00"
  51.                android:layout_width="0dp"
  52.                android:layout_height="wrap_content"
  53.                android:layout_weight="1"
  54.                android:text="Button"
  55.                android:textSize="18sp" />
  56.  
  57.             <Button
  58.                android:id="@+id/button01"
  59.                android:layout_width="0dp"
  60.                android:layout_height="wrap_content"
  61.                android:layout_weight="1"
  62.                android:text="Button"
  63.                android:textSize="18sp" />
  64.  
  65.             <Button
  66.                android:id="@+id/button02"
  67.                android:layout_width="0dp"
  68.                android:layout_height="wrap_content"
  69.                android:layout_weight="1"
  70.                android:text="Button"
  71.                android:textSize="18sp" />
  72.  
  73.             <Button
  74.                android:id="@+id/button03"
  75.                android:layout_width="0dp"
  76.                android:layout_height="wrap_content"
  77.                android:layout_weight="1"
  78.                android:text="Button"
  79.                android:textSize="18sp" />
  80.         </TableRow>
  81.  
  82.         <TableRow
  83.            android:layout_width="match_parent"
  84.            android:layout_height="match_parent">
  85.  
  86.             <Button
  87.                android:id="@+id/button10"
  88.                android:layout_width="0dp"
  89.                android:layout_height="wrap_content"
  90.                android:layout_weight="1"
  91.                android:text="Button"
  92.                android:textSize="18sp" />
  93.  
  94.             <Button
  95.                android:id="@+id/button11"
  96.                android:layout_width="0dp"
  97.                android:layout_height="wrap_content"
  98.                android:layout_weight="1"
  99.                android:text="Button"
  100.                android:textSize="18sp" />
  101.  
  102.             <Button
  103.                android:id="@+id/button12"
  104.                android:layout_width="0dp"
  105.                android:layout_height="wrap_content"
  106.                android:layout_weight="1"
  107.                android:text="Button"
  108.                android:textSize="18sp" />
  109.  
  110.             <Button
  111.                android:id="@+id/button13"
  112.                android:layout_width="0dp"
  113.                android:layout_height="wrap_content"
  114.                android:layout_weight="1"
  115.                android:text="Button"
  116.                android:textSize="18sp" />
  117.         </TableRow>
  118.  
  119.         <TableRow
  120.            android:layout_width="match_parent"
  121.            android:layout_height="match_parent">
  122.  
  123.             <Button
  124.                android:id="@+id/button20"
  125.                android:layout_width="0dp"
  126.                android:layout_height="wrap_content"
  127.                android:layout_weight="1"
  128.                android:text="Button"
  129.                android:textSize="18sp" />
  130.  
  131.             <Button
  132.                android:id="@+id/button21"
  133.                android:layout_width="0dp"
  134.                android:layout_height="wrap_content"
  135.                android:layout_weight="1"
  136.                android:text="Button"
  137.                android:textSize="18sp" />
  138.  
  139.             <Button
  140.                android:id="@+id/button22"
  141.                android:layout_width="0dp"
  142.                android:layout_height="wrap_content"
  143.                android:layout_weight="1"
  144.                android:text="Button"
  145.                android:textSize="18sp" />
  146.  
  147.             <Button
  148.                android:id="@+id/button23"
  149.                android:layout_width="0dp"
  150.                android:layout_height="wrap_content"
  151.                android:layout_weight="1"
  152.                android:text="Button"
  153.                android:textSize="18sp" />
  154.         </TableRow>
  155.  
  156.         <TableRow
  157.            android:layout_width="match_parent"
  158.            android:layout_height="match_parent">
  159.  
  160.             <Button
  161.                android:id="@+id/button30"
  162.                android:layout_width="0dp"
  163.                android:layout_height="wrap_content"
  164.                android:layout_weight="1"
  165.                android:text="Button"
  166.                android:textSize="18sp" />
  167.  
  168.             <Button
  169.                android:id="@+id/button31"
  170.                android:layout_width="0dp"
  171.                android:layout_height="wrap_content"
  172.                android:layout_weight="1"
  173.                android:text="Button"
  174.                android:textSize="18sp" />
  175.  
  176.             <Button
  177.                android:id="@+id/button32"
  178.                android:layout_width="0dp"
  179.                android:layout_height="wrap_content"
  180.                android:layout_weight="1"
  181.                android:text="Button"
  182.                android:textSize="18sp" />
  183.  
  184.             <Button
  185.                android:id="@+id/button33"
  186.                android:layout_width="0dp"
  187.                android:layout_height="wrap_content"
  188.                android:layout_weight="1"
  189.                android:text="Button"
  190.                android:textSize="18sp" />
  191.  
  192.         </TableRow>
  193.     </TableLayout>
  194.  
  195. </androidx.constraintlayout.widget.ConstraintLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement