<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/background_light">
<ListView
android:id="@+id/listView1"
android:layout_weight="60"
android:layout_height="wrap_content"
android:layout_width="0px"
android:background="@color/background_dark"></ListView>
<Button
android:text="Button"
android:id="@+id/button1"
android:layout_weight="20"
android:layout_width="0px"
android:layout_height="wrap_content"></Button>
<Button
android:text="Button"
android:id="@+id/button2"
android:layout_weight="20"
android:layout_width="0px"
android:layout_height="wrap_content"></Button>
</LinearLayout>