Я хочу, чтобы достичь этого
Использование RelativeLayout сделать View принять все остальное пространство
Я делаю это
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:id="@+id/upper"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/wallet_dim_foreground_inverse_disabled_holo_dark">
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="80dp"
android:orientation="horizontal"
android:layout_below="@+id/upper"
android:background="@color/blueAccentColor">
</LinearLayout>
</RelativeLayout>
Спасибо. Это сработало. –