blob: dac40118c7b56201eb8f52bb7bd50481d3cadbb2 [file] [log] [blame]
alisiond295ec22013-05-17 10:12:13 -04001<?xml version="1.0" encoding="utf-8"?>
2<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:id="@+id/contactview"
4 android:layout_margin="5dp"
5 android:layout_width="match_parent"
6 android:layout_height="match_parent" >
7
8
9 <ImageView
10 android:id="@+id/photo"
11 android:layout_width="80dp"
12 android:layout_height="80dp"
13 android:scaleType="centerCrop"/>
14
15 <TextView
16 android:id="@+id/display_name"
17 android:layout_width="wrap_content"
18 android:layout_height="wrap_content"
19 android:layout_alignParentBottom="true"
20 android:layout_centerHorizontal="true"
21 android:layout_below="@+id/photo"
22 android:singleLine="true"
23 android:textSize="10sp" />
24
25
26</RelativeLayout>