0
I can’t get the Buttons on the layout like I want. I wanted to leave one button at the center and the others at the bottom (bottom) below what is at the center. Only they don’t get right and I can’t get it right.
<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>
You can provide a wireframe or simple image of the result you expect?
– Genos
yes I can, use a simple image
– sergiopm