Advertisement
Guest User

Untitled

a guest
Oct 20th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.79 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <android.widget.LinearLayout
  3.    xmlns:android="http://schemas.android.com/apk/res/android"
  4.    xmlns:app="http://schemas.android.com/apk/res-auto"
  5.    xmlns:tools="http://schemas.android.com/tools"
  6.    android:layout_width="match_parent"
  7.    android:layout_height="match_parent"
  8.    android:orientation="vertical">
  9.  
  10.  
  11.     <LinearLayout
  12.        android:layout_width="match_parent"
  13.        android:layout_height="match_parent"
  14.        android:orientation="horizontal">
  15.  
  16.         <Button
  17.            android:id="@+id/button1"
  18.            android:layout_width="match_parent"
  19.            android:layout_height="wrap_content"
  20.            android:layout_weight="1"
  21.            android:text="Button" />
  22.  
  23.         <Button
  24.            android:id="@+id/button2"
  25.            android:layout_width="match_parent"
  26.            android:layout_height="wrap_content"
  27.            android:layout_weight="1"
  28.            android:text="Button" />
  29.  
  30.         <Button
  31.            android:id="@+id/button3"
  32.            android:layout_width="match_parent"
  33.            android:layout_height="wrap_content"
  34.            android:layout_weight="1"
  35.            android:text="Button" />
  36.  
  37.         <Button
  38.            android:id="@+id/button4"
  39.            android:layout_width="match_parent"
  40.            android:layout_height="wrap_content"
  41.            android:layout_weight="1"
  42.            android:text="Button" />
  43.     </LinearLayout>
  44.  
  45.     <edu.ucsb.cs.cs184.q_zhu.bzhudrawingmultitouch.CanvasView
  46.        android:layout_width="match_parent"
  47.        android:layout_height="wrap_content"
  48.        android:layout_marginTop="0dp"
  49.        android:layout_marginLeft="0dp"
  50.        android:layout_marginRight="0dp"
  51.        android:layout_marginBottom="0dp" />
  52.  
  53. </android.widget.LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement