activity_conversations.xml

 1<layout xmlns:android="http://schemas.android.com/apk/res/android">
 2
 3    <LinearLayout
 4        android:layout_width="match_parent"
 5        android:layout_height="match_parent"
 6        android:orientation="vertical">
 7
 8        <include android:id="@+id/toolbar"
 9            layout="@layout/toolbar" />
10
11        <LinearLayout
12            android:layout_width="match_parent"
13            android:layout_height="match_parent">
14
15            <FrameLayout
16                android:id="@+id/main_fragment"
17                android:layout_width="0dp"
18                android:layout_height="match_parent"
19                android:layout_weight="1000"/>
20
21            <FrameLayout
22                android:id="@+id/secondary_fragment"
23                android:layout_width="0dp"
24                android:layout_height="match_parent"
25                android:layout_weight="1618"/>
26        </LinearLayout>
27    </LinearLayout>
28</layout>