fragment_conversations_overview.xml

 1<android.support.v4.widget.SlidingPaneLayout xmlns:android="http://schemas.android.com/apk/res/android"
 2    android:id="@+id/content_view_spl"
 3    android:layout_width="match_parent"
 4    android:layout_height="match_parent" >
 5
 6    <LinearLayout
 7        xmlns:android="http://schemas.android.com/apk/res/android"
 8        android:layout_width="@dimen/conversations_overview_width"
 9        android:layout_height="match_parent"
10        android:background="?attr/color_background_primary"
11        android:orientation="vertical" >
12
13        <de.timroes.android.listview.EnhancedListView
14            android:id="@+id/list"
15            android:layout_width="fill_parent"
16            android:layout_height="wrap_content"
17            android:background="?attr/color_background_primary"
18            android:divider="@color/black12"
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:layout_weight="1"
27        android:orientation="vertical" >
28    </LinearLayout>
29
30</android.support.v4.widget.SlidingPaneLayout>