Вы можете сделать это так
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:weightSum="4"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="3"
android:background="@android:color/holo_green_dark"
>
<!--Other Views Here-->
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="@android:color/holo_red_dark"
>
<!--Other Views Here-->
</RelativeLayout>
</LinearLayout>
Выход:
![Output](https://i.stack.imgur.com/svFna.png)