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="horizontal">
7
8 <FrameLayout
9 android:id="@+id/main_fragment"
10 android:layout_width="0dp"
11 android:layout_height="match_parent"
12 android:layout_weight="1000"/>
13
14 <FrameLayout
15 android:id="@+id/secondary_fragment"
16 android:layout_width="0dp"
17 android:layout_height="match_parent"
18 android:layout_weight="1618"/>
19
20 </LinearLayout>
21
22</layout>