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="288dp"
8 android:layout_height="match_parent"
9 android:orientation="vertical"
10 android:background="@color/primarybackground"
11 >
12
13 <ListView
14 android:id="@+id/list"
15 android:layout_width="fill_parent"
16 android:layout_height="wrap_content"
17 android:divider="@color/divider"
18 android:dividerHeight="1dp"
19 android:background="@color/primarybackground"
20 />
21
22</LinearLayout>
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</android.support.v4.widget.SlidingPaneLayout>