Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Layout TextView

How can i fit this text view so it doesn't deform the 2 Image Buttons.I would like to have it on top of them 2. This is how they appear now:

Layout now

This is how the buttons should look like:

Here's my xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

android:layout_width="match_parent"
android:layout_height="wrap_content"
android:weightSum="2"
android:orientation="horizontal">



<ImageButton
    android:layout_width="0dp"
    android:layout_height="400dp"
    android:layout_weight="1"
    android:id="@+id/botoAbdominals"
    android:background="@drawable/abdominals"
    android:contentDescription="ImatgeAbdominals"
    android:layout_marginTop="50dp"
    android:layout_marginRight="10dp"
    android:layout_marginLeft="10dp"
    android:layout_gravity="center"
    />


<ImageButton
    android:layout_width="0dp"
    android:layout_height="400dp"
    android:layout_weight="1"
    android:id="@+id/botoFlexio"
    android:layout_gravity="center"
    android:layout_marginTop="50dp"
    android:layout_marginLeft="10dp"
    android:layout_marginRight="10dp"
    android:background="@drawable/flexio"
    android:contentDescription="ImatgeFlexio"
    />
<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Escull la rutina desitjada" />

like image 790
Alexia White Avatar asked Mar 28 '26 22:03

Alexia White


1 Answers

put another LinearLayout around it, that is vertical orientation. With the textview and Linearlayout as children to it.

The following hierarchy.

> LinearLayout (vertical)
  > TextView
  > LinearLayout (horizontal) // [Like your current one]
    > ImageButton
    > ImageButton
like image 67
IAmGroot Avatar answered Mar 31 '26 04:03

IAmGroot



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!