Home | History | Annotate | Download | only in layout
      1 <?xml version="1.0" encoding="utf-8"?>
      2 
      3 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      4               android:orientation="horizontal"
      5               android:background="#fff"
      6               android:layout_width="fill_parent"
      7               android:layout_height="fill_parent">
      8     <ImageView
      9             android:layout_width="wrap_content"
     10             android:layout_height="wrap_content"
     11             android:id="@+id/contact_arrow"
     12             android:src="@drawable/arrow_thumbnail"/>
     13     <LinearLayout android:orientation="vertical"
     14                   android:layout_width="fill_parent"
     15                   android:layout_height="fill_parent">
     16         <TextView
     17                 android:layout_width="match_parent"
     18                 android:layout_height="wrap_content"
     19                 android:id="@+id/contact_name"/>
     20         <TextView
     21                 android:layout_width="match_parent"
     22                 android:layout_height="wrap_content"
     23                 android:id="@+id/contact_street"/>
     24         <TextView
     25                 android:layout_width="match_parent"
     26                 android:layout_height="wrap_content"
     27                 android:id="@+id/contact_city"/>
     28         <TextView
     29                 android:layout_width="match_parent"
     30                 android:layout_height="wrap_content"
     31                 android:id="@+id/contact_phone"/>
     32         <TextView
     33                 android:layout_width="match_parent"
     34                 android:layout_height="match_parent"
     35                 android:id="@+id/contact_email"/>
     36     </LinearLayout>
     37     <ImageView
     38             android:layout_width="wrap_content"
     39             android:layout_height="wrap_content"
     40             android:id="@+id/contact_picture"/>
     41 </LinearLayout>