Advertisement
asadujjaman

Untitled

May 3rd, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.10 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:tools="http://schemas.android.com/tools"
  4.    android:layout_width="match_parent"
  5.    android:layout_height="match_parent"
  6.    android:paddingBottom="@dimen/activity_vertical_margin"
  7.    android:paddingLeft="@dimen/activity_horizontal_margin"
  8.    android:paddingRight="@dimen/activity_horizontal_margin"
  9.    android:paddingTop="@dimen/activity_vertical_margin"
  10.    tools:context="com.example.shotlu.readdata.DisplayListView">
  11.  
  12.     <ListView
  13.        android:layout_width="match_parent"
  14.        android:layout_height="wrap_content"
  15.        android:id="@+id/listview"
  16.        android:layout_above="@+id/btBack" />
  17.  
  18.     <Button
  19.        android:id="@+id/btBack"
  20.        android:layout_width="match_parent"
  21.        android:layout_height="wrap_content"
  22.        android:layout_alignParentBottom="true"
  23.        android:layout_alignParentLeft="true"
  24.        android:layout_alignParentStart="true"
  25.        android:onClick="getBack"
  26.        android:text="Back"
  27.        />
  28.  
  29. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement