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="match_parent"
 9        android:layout_marginRight="@dimen/swipe_handle_size"
10        android:layout_height="match_parent"
11        android:background="?attr/color_background_primary"
12        android:orientation="vertical" >
13
14        <de.timroes.android.listview.EnhancedListView
15            android:id="@+id/list"
16            android:layout_width="fill_parent"
17            android:layout_height="wrap_content"
18            android:background="?attr/color_background_primary"
19            android:divider="@color/black12"
20            android:dividerHeight="1dp" />
21    </LinearLayout>
22
23    <LinearLayout
24        android:id="@+id/selected_conversation"
25        android:layout_width="fill_parent"
26        android:layout_height="match_parent"
27        android:layout_weight="1"
28        android:orientation="vertical" >
29    </LinearLayout>
30
31</android.support.v4.widget.SlidingPaneLayout>