fragment_conversations_overview.xml

 1<android.support.v4.widget.SlidingPaneLayout
 2        xmlns:android="http://schemas.android.com/apk/res/android"
 3        android:layout_width="match_parent"
 4        android:layout_height="match_parent"
 5        android:id="@+id/slidingpanelayout">
 6<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 7    android:layout_width="336dp"
 8    android:layout_height="match_parent"
 9    android:orientation="vertical"
10    android:background="#eeeeee"
11    >
12 
13    <ListView
14        android:id="@+id/list"
15        android:layout_width="fill_parent"
16        android:layout_height="wrap_content"
17        android:divider="#b5b5b5"
18        android:dividerHeight="1dp"
19        android:background="#eeeeee"
20     />
21 
22</LinearLayout>
23<LinearLayout 
24    android:id="@+id/selected_conversation"
25    android:layout_width="400dp"
26	android:layout_height="match_parent"
27	android:layout_weight="1"
28	android:background="#e5e5e5"
29	android:orientation="vertical">
30</LinearLayout>      
31</android.support.v4.widget.SlidingPaneLayout>