Advertisement
Guest User

table

a guest
Feb 19th, 2018
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.60 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    android:orientation="vertical" android:layout_width="match_parent"
  4.    android:layout_height="match_parent">
  5.  
  6.     <TableLayout
  7.        android:layout_width="match_parent"
  8.        android:layout_height="match_parent">
  9.  
  10.         <TableRow
  11.            android:layout_width="match_parent"
  12.            android:layout_height="match_parent" >
  13.  
  14.             <Button
  15.                android:id="@+id/button13"
  16.                android:layout_width="wrap_content"
  17.                android:layout_height="wrap_content"
  18.                android:text="Button" />
  19.  
  20.             <Button
  21.                android:id="@+id/button12"
  22.                android:layout_width="wrap_content"
  23.                android:layout_height="wrap_content"
  24.                android:text="Button" />
  25.  
  26.             <Button
  27.                android:id="@+id/button11"
  28.                android:layout_width="match_parent"
  29.                android:layout_height="wrap_content"
  30.                android:text="Button" />
  31.  
  32.             <Button
  33.                android:id="@+id/button10"
  34.                android:layout_width="97dp"
  35.                android:layout_height="wrap_content"
  36.                android:text="Button" />
  37.  
  38.         </TableRow>
  39.  
  40.         <TableRow
  41.            android:layout_width="match_parent"
  42.            android:layout_height="match_parent" >
  43.  
  44.             <Button
  45.                android:id="@+id/button9"
  46.                android:layout_width="match_parent"
  47.                android:layout_height="wrap_content"
  48.                android:text="Button" />
  49.  
  50.             <Button
  51.                android:id="@+id/button"
  52.                android:layout_width="match_parent"
  53.                android:layout_height="wrap_content"
  54.                android:text="Button" />
  55.         </TableRow>
  56.  
  57.         <TableRow
  58.            android:layout_width="match_parent"
  59.            android:layout_height="match_parent" >
  60.  
  61.             <TextView
  62.                android:id="@+id/textView29"
  63.                android:layout_width="wrap_content"
  64.                android:layout_height="wrap_content"
  65.                android:text="TextView" />
  66.  
  67.             <TextView
  68.                android:id="@+id/textView28"
  69.                android:layout_width="wrap_content"
  70.                android:layout_height="wrap_content"
  71.                android:text="TextView" />
  72.         </TableRow>
  73.  
  74.         <TableRow
  75.            android:layout_width="match_parent"
  76.            android:layout_height="match_parent" />
  77.     </TableLayout>
  78. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement