hendroprwk08

Untitled

Sep 15th, 2020
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.33 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    xmlns:tools="http://schemas.android.com/tools"
  4.    android:layout_width="match_parent"
  5.    android:layout_height="match_parent"
  6.    android:orientation="vertical"
  7.    tools:context=".MainActivity">
  8.  
  9.     <LinearLayout
  10.        android:layout_width="match_parent"
  11.        android:layout_height="wrap_content"
  12.        android:orientation="horizontal">
  13.  
  14.         <Button
  15.            android:layout_width="match_parent"
  16.            android:layout_height="wrap_content"
  17.            android:id="@+id/bt_satu"
  18.            android:text="SATU"
  19.            android:layout_weight="1"/>
  20.  
  21.         <Button
  22.            android:layout_width="match_parent"
  23.            android:layout_height="wrap_content"
  24.            android:id="@+id/bt_dua"
  25.            android:text="DUA"
  26.            android:layout_weight="1"/>
  27.  
  28.         <Button
  29.            android:layout_width="match_parent"
  30.            android:layout_height="wrap_content"
  31.            android:id="@+id/bt_tiga"
  32.            android:text="TIGA"
  33.            android:layout_weight="1"/>
  34.  
  35.     </LinearLayout>
  36.  
  37.     <FrameLayout
  38.        android:layout_width="match_parent"
  39.        android:layout_height="match_parent"
  40.        android:id="@+id/tempat_fragment"/>
  41.  
  42. </LinearLayout>
Add Comment
Please, Sign In to add comment