blob: e20c288eef5568e899ccd8956f9a443541b7954f [file] [log] [blame]
Alexandre Lisiondede80e2014-01-29 09:51:07 -05001<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 android:id="@+id/frame"
3 android:layout_width="match_parent"
4 android:layout_height="match_parent">
Alexandre Lision2e52d392013-11-06 15:14:31 -05005
6 <!-- Background -->
Alexandre Lision2e52d392013-11-06 15:14:31 -05007 <RelativeLayout
Alexandre Lisiondede80e2014-01-29 09:51:07 -05008 android:id="@+id/iv"
9 android:layout_width="match_parent"
10 android:layout_height="@dimen/header_history_detail"
11 android:layout_alignParentTop="true">
Alexandre Lision2e52d392013-11-06 15:14:31 -050012
Alexandre Lisiondede80e2014-01-29 09:51:07 -050013
14 <ImageView
15 android:id="@+id/contact_photo"
16 android:layout_width="100dp"
17 android:layout_height="100dp"
18 android:layout_centerHorizontal="true"
19 android:layout_marginTop="30dp"/>
20
21 <LinearLayout
22 android:id="@+id/contact_name_holder"
23 android:layout_width="0dp"
24 android:layout_height="50dp"
25 android:layout_alignParentBottom="true"
26 android:layout_alignParentLeft="true"
27 android:layout_alignParentRight="true"
28 android:background="#AAFFFFFF"
29 android:orientation="vertical"
30 android:padding="5dp">
31
32 <TextView
33 android:id="@+id/history_call_name"
34 android:layout_width="match_parent"
35 android:layout_height="match_parent"
36 android:gravity="center"
37 android:singleLine="true"
38 android:textSize="18sp"/>
39 </LinearLayout>
Alexandre Lision2e52d392013-11-06 15:14:31 -050040
Alexandre Lision6da3bb92013-12-10 17:32:46 -050041 <LinearLayout
Alexandre Lisiondede80e2014-01-29 09:51:07 -050042 android:id="@+id/contact_name_holder"
43 android:layout_width="0dp"
44 android:layout_height="50dp"
45 android:layout_alignParentBottom="true"
46 android:layout_alignParentLeft="true"
47 android:layout_alignParentRight="true"
48 android:background="#AAFFFFFF"
49 android:orientation="vertical"
50 android:padding="5dp">
Alexandre Lision2e52d392013-11-06 15:14:31 -050051
Alexandre Lision6da3bb92013-12-10 17:32:46 -050052 </LinearLayout>
Alexandre Lision2e52d392013-11-06 15:14:31 -050053 </RelativeLayout>
54
Alexandre Lisiondede80e2014-01-29 09:51:07 -050055
Alexandre Lision2e52d392013-11-06 15:14:31 -050056 <!-- Foreground -->
Alexandre Lision2e52d392013-11-06 15:14:31 -050057
Alexandre Lisiondede80e2014-01-29 09:51:07 -050058 <ListView
59 android:id="@+id/lvMain"
Alexandre Lision2e52d392013-11-06 15:14:31 -050060 android:layout_width="match_parent"
Alexandre Lisiondede80e2014-01-29 09:51:07 -050061 android:layout_height="match_parent"
62 android:dividerHeight="2dp"
63 android:layout_below="@+id/iv"
64 android:fillViewport="true"
65 android:drawSelectorOnTop="true">
66 </ListView>
Alexandre Lision2e52d392013-11-06 15:14:31 -050067
Alexandre Lisionddbb46f2013-12-12 12:18:58 -050068
Alexandre Lisiondede80e2014-01-29 09:51:07 -050069</RelativeLayout>