Home | History | Annotate | Download | only in layout
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <RelativeLayout
      3     xmlns:android="http://schemas.android.com/apk/res/android"
      4     android:layout_width="match_parent"
      5     android:layout_height="match_parent">
      6     <Button
      7         android:id="@+id/pick_contact_button"
      8         android:layout_width="match_parent"
      9         android:layout_height="wrap_content"
     10         android:layout_alignParentTop="true"
     11         android:layout_margin="10dip"
     12         android:text="@string/button_pick_contact"/>
     13     <TextView
     14         android:id="@+id/display_name_text_view"
     15         android:layout_width="wrap_content"
     16         android:layout_height="wrap_content"
     17         android:layout_centerInParent="true"
     18         android:textAppearance="?android:attr/textAppearanceLarge"/>
     19     <TextView
     20         android:id="@+id/phone_number_text_view"
     21         android:layout_width="wrap_content"
     22         android:layout_height="wrap_content"
     23         android:layout_below="@id/display_name_text_view"
     24         android:layout_centerHorizontal="true"
     25         android:textAppearance="?android:attr/textAppearanceMedium"/>
     26 </RelativeLayout>
     27 
     28