I can not put the buttons in the layout as I want. I wanted to leave a button in the center and the others in the bottom (bottom) of what is in the center. So they are not correct and I can not get it right when the resolution changes.
<LinearLayout
android:orientation="vertical"
android:layout_height="match_parent"
android:weightSum="1"
android:layout_width="match_parent"
android:gravity="center">
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="523dp"
android:gravity="bottom|center">
<Button
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/button10"
android:layout_weight="1"
android:background="@drawable/hohoho" />
</LinearLayout>
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="99dp"
android:gravity="top">
<Button
android:text="Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/button9"
android:layout_weight="1" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/button8"
android:layout_weight="1" />
</LinearLayout>
</LinearLayout>