fragment_conversations_overview.xml

 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
 7    <LinearLayout
 8        android:layout_width="320dp"
 9        android:layout_height="match_parent"
10        android:background="@color/primarybackground"
11        android:orientation="vertical" >
12
13        <ListView
14            android:id="@+id/list"
15            android:layout_width="fill_parent"
16            android:layout_height="wrap_content"
17            android:background="@color/primarybackground"
18            android:divider="@color/divider"
19            android:dividerHeight="1dp" />
20    </LinearLayout>
21
22    <LinearLayout
23        android:id="@+id/selected_conversation"
24        android:layout_width="fill_parent"
25        android:layout_height="match_parent"
26        android:orientation="vertical" >
27    </LinearLayout>
28
29</LinearLayout>