Advertisement
Darsiwan

Untitled

Aug 9th, 2016
73,986
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MXML 1.40 KB | None | 0 0
  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2.                xmlns:tools="http://schemas.android.com/tools"
  3.                android:layout_width="match_parent"
  4.                android:layout_height="match_parent"
  5.                android:paddingBottom="@dimen/activity_vertical_margin"
  6.                android:paddingLeft="@dimen/activity_horizontal_margin"
  7.                android:paddingRight="@dimen/activity_horizontal_margin"
  8.                android:paddingTop="@dimen/activity_vertical_margin"
  9.                android:background="#ecf0f1"
  10.                tools:context=".MainActivity" >
  11.     <ListView
  12.        android:id="@+id/listView1"
  13.        android:layout_width="match_parent"
  14.        android:layout_height="wrap_content"
  15.        android:layout_alignParentTop="true"
  16.        android:layout_alignParentRight="true"
  17.        android:layout_alignParentEnd="true"
  18.        android:layout_above="@+id/button2">
  19.     </ListView>
  20.     <Button
  21.        android:id="@+id/button2"
  22.        android:layout_width="wrap_content"
  23.        android:layout_height="wrap_content"
  24.        style="?android:attr/borderlessButtonStyle"
  25.        android:drawableLeft="@drawable/icon_add"
  26.        android:text="Buat Biodata Baru"
  27.        android:layout_alignParentBottom="true"
  28.        android:layout_alignParentLeft="true"
  29.        android:layout_alignParentStart="true" />
  30. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement