Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.01 KB | None | 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 player;
  10.     >
  11.  
  12.     <Button
  13.        android:id="@+id/Player"
  14.        android:layout_width="117dp"
  15.        android:layout_height="64dp"
  16.        android:text="Player"
  17.        tools:layout_editor_absoluteX="41dp"
  18.        tools:layout_editor_absoluteY="85dp" />
  19.  
  20.     <Button
  21.        android:id="@+id/computer"
  22.        android:layout_width="117dp"
  23.        android:layout_height="64dp"
  24.        android:text="Computer"
  25.        tools:layout_editor_absoluteX="239dp"
  26.        tools:layout_editor_absoluteY="85dp" />
  27.  
  28.     <Button
  29.        android:id="@+id/Rock"
  30.        android:layout_width="wrap_content"
  31.        android:layout_height="wrap_content"
  32.        android:text="Rock"
  33.        tools:layout_editor_absoluteX="49dp"
  34.        tools:layout_editor_absoluteY="479dp" />
  35.  
  36.     <Button
  37.        android:id="@+id/paper"
  38.        android:layout_width="wrap_content"
  39.        android:layout_height="wrap_content"
  40.        android:text="Paper"
  41.        tools:layout_editor_absoluteX="161dp"
  42.        tools:layout_editor_absoluteY="479dp" />
  43.  
  44.     <Button
  45.        android:id="@+id/Scissor"
  46.        android:layout_width="wrap_content"
  47.        android:layout_height="wrap_content"
  48.        android:text="Scissor"
  49.        tools:layout_editor_absoluteX="279dp"
  50.        tools:layout_editor_absoluteY="479dp" />
  51.  
  52.     <ImageButton
  53.        android:id="@+id/imageButton2"
  54.        android:layout_width="wrap_content"
  55.        android:layout_height="wrap_content"
  56.        app:srcCompat="@drawable/mai"
  57.        tools:layout_editor_absoluteX="93dp"
  58.        tools:layout_editor_absoluteY="217dp" />
  59.  
  60.  
  61. </androidx.constraintlayout.widget.ConstraintLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement