blob: f70f99d28b18110b73c09326ad3a4aa647fb9816 [file] [log] [blame]
alision9f7a6ec2013-05-24 16:26:26 -04001<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:layout_width="match_parent"
4 android:layout_height="match_parent"
Alexandre Lision8b9d8e82013-10-04 09:21:27 -04005 android:background="@color/light"
6 android:orientation="vertical"
7 android:paddingTop="?android:attr/actionBarSize" >
alision9f7a6ec2013-05-24 16:26:26 -04008
Alexandre Lisionfd3fcd92013-10-25 15:23:52 -04009 <RelativeLayout
10 android:layout_width="match_parent"
Alexandre Lisiondd6623b2013-12-02 16:23:40 -050011 android:layout_height="100dp"
Alexandre Lisione5b66022013-10-30 11:34:15 -040012 android:background="@color/sfl_blue_0"
Alexandre Lisionfd3fcd92013-10-25 15:23:52 -040013 android:padding="5dp" >
14
15 <ImageView
16 android:id="@+id/user_photo"
17 android:layout_width="70dp"
18 android:layout_height="70dp"
19 android:layout_alignParentLeft="true"
20 android:layout_centerVertical="true" />
21
22 <TextView
23 android:id="@+id/user_name"
24 android:layout_width="wrap_content"
25 android:layout_height="wrap_content"
Alexandre Lisiondd6623b2013-12-02 16:23:40 -050026 android:layout_alignParentRight="true"
Alexandre Lisionfd3fcd92013-10-25 15:23:52 -040027 android:layout_marginLeft="15dp"
Alexandre Lisione5b66022013-10-30 11:34:15 -040028 android:layout_toRightOf="@+id/user_photo"
Alexandre Lisionfd3fcd92013-10-25 15:23:52 -040029 android:singleLine="true"
Alexandre Lisione5b66022013-10-30 11:34:15 -040030 android:textColor="@color/white"
31 android:textSize="20sp"
32 android:textStyle="bold" />
Alexandre Lisiondd6623b2013-12-02 16:23:40 -050033
34 <RelativeLayout
35 android:layout_width="match_parent"
36 android:layout_height="wrap_content"
37 android:layout_alignLeft="@+id/user_name"
38 android:layout_alignRight="@+id/user_name"
39 android:layout_alignParentBottom="true"
40 android:layout_below="@+id/user_name" >
41
42 <Spinner
43 android:id="@+id/account_selection"
44 android:layout_width="match_parent"
45 android:layout_height="wrap_content"
46 android:background="@color/sfl_blue_0" />
47
48 <ImageView
49 android:layout_width="wrap_content"
50 android:layout_height="wrap_content"
51 android:layout_alignParentRight="true"
52 android:layout_centerVertical="true"
53 android:clickable="false"
54 android:focusable="false"
55 android:src="@drawable/ic_action_expand_light" />
56 </RelativeLayout>
Alexandre Lisionfd3fcd92013-10-25 15:23:52 -040057 </RelativeLayout>
58
alision9f7a6ec2013-05-24 16:26:26 -040059 <ListView
60 android:id="@+id/listView"
61 android:layout_width="match_parent"
62 android:layout_height="wrap_content" >
63 </ListView>
64
65</LinearLayout>