Существует много способов создания вида.
Я использовал LinearLayout
здесь для того же.
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
>
<View
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight=1
android:background="#FFFFFF"
/>
<View
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight=3
android:background="#0000FF"
/>
</LinearLayout