Note that there are some explanatory texts on larger screens.

plurals
  1. POSet 1 textview and 2 buttons independently in a Relativelayout
    primarykey
    data
    text
    <p>I have this XML:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent"&gt; &lt;RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/upperBar" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="wrap_content" android:background="@android:color/darker_gray" &gt; &lt;TextView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/txtForum" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textStyle="bold" android:textSize="25dp" android:textColor="#255094" android:layout_centerVertical="true" android:layout_marginLeft="5dp" android:layout_marginTop="5dp" android:layout_marginBottom="5dp" android:layout_alignParentLeft="true" android:maxLines="2" android:scrollbars="vertical" &gt; &lt;/TextView&gt; &lt;ImageButton android:id="@+id/btnBrowser" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="5dp" android:layout_marginBottom="5dp" android:layout_alignParentRight="true" android:src="@drawable/icon_browser" android:contentDescription="Open Browser" &gt; &lt;/ImageButton&gt; &lt;Button android:id="@+id/btnNewThread" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="NewThread" android:layout_marginTop="5dp" android:layout_marginBottom="5dp" android:layout_toLeftOf="@+id/btnBrowser"&gt; &lt;/Button&gt; &lt;/RelativeLayout&gt; &lt;ListView android:id="@+id/list" android:layout_width="match_parent" android:layout_height="match_parent" android:cacheColorHint="#00000000" android:padding="10dp" android:layout_below="@+id/upperBar"&gt; &lt;/ListView&gt; &lt;/LinearLayout&gt; </code></pre> <p>And looks like this:</p> <p><img src="https://i.stack.imgur.com/olp13.png" alt="enter image description here"></p> <p>The problem is that, when the TextView is too long, it overlaps the buttons. I'd like to have those elements independently that the text is long. What should I add to my code?</p> <p>Thank you.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload