1<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 android:id="@+id/content_view_ll"
3 android:layout_width="match_parent"
4 android:layout_height="match_parent"
5 android:orientation="horizontal"
6 android:baselineAligned="false">
7
8 <LinearLayout
9 android:layout_width="0dp"
10 android:layout_height="match_parent"
11 android:layout_weight="1"
12 android:background="@color/grey50"
13 android:orientation="vertical" >
14
15 <de.timroes.android.listview.EnhancedListView
16 android:id="@+id/list"
17 android:layout_width="fill_parent"
18 android:layout_height="wrap_content"
19 android:background="@color/grey50"
20 android:divider="@color/black12"
21 android:dividerHeight="1dp" />
22 </LinearLayout>
23
24 <LinearLayout
25 android:id="@+id/selected_conversation"
26 android:layout_width="0dp"
27 android:layout_weight="2"
28 android:layout_height="match_parent"
29 android:orientation="vertical" >
30 </LinearLayout>
31
32</LinearLayout>