Advertisement
eddisusantoo

testtest

Sep 18th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.65 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout 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.    android:orientation="vertical"
  8.    tools:context="com.example.rootkit33.belajarandroid.MainActivity">
  9.  
  10.  
  11.     <Button
  12.        android:id="@+id/button4"
  13.        android:layout_width="wrap_content"
  14.        android:layout_height="wrap_content"
  15.        android:text="Button"
  16.        android:layout_alignParentTop="true"
  17.        android:layout_alignParentLeft="true"
  18.        android:layout_alignParentStart="true"
  19.        android:layout_alignParentRight="true"
  20.        android:layout_alignParentEnd="true" />
  21.  
  22.     <Button
  23.        android:id="@+id/button6"
  24.        android:layout_width="wrap_content"
  25.        android:layout_height="wrap_content"
  26.        android:text="Button"
  27.        android:layout_marginLeft="30dp"
  28.        android:layout_marginStart="30dp"
  29.        android:layout_marginTop="19dp"
  30.        android:layout_below="@+id/button4"
  31.        android:layout_alignParentLeft="true"
  32.        android:layout_alignParentStart="true" />
  33.  
  34.     <Button
  35.        android:id="@+id/button7"
  36.        android:layout_width="wrap_content"
  37.        android:layout_height="wrap_content"
  38.        android:layout_alignParentEnd="true"
  39.        android:layout_alignParentRight="true"
  40.        android:layout_alignTop="@+id/button6"
  41.        android:layout_marginEnd="25dp"
  42.        android:layout_marginRight="25dp"
  43.        android:text="Button" />
  44.  
  45. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement