Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>Well, in your case if you want images behind the TextView you can use FrameLayout for that, try this.</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent"&gt; &lt;FrameLayout android:layout_width="fill_parent" android:layout_height="fill_parent"&gt; &lt;RelativeLayout android:layout_width="fill_parent" android:layout_height="fill_parent"&gt; &lt;ImageButton android:id="@+id/browse_item_add_button" android:background="@drawable/icon" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentRight="true"&gt; &lt;/ImageButton&gt; &lt;ImageView android:id="@+id/browse_item_to_submenu" android:src="@drawable/icon" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_toLeftOf="@id/browse_item_add_button"&gt; &lt;/ImageView&gt; &lt;ImageView android:id="@+id/browse_item_row_icon" android:src="@drawable/icon" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_toLeftOf="@id/browse_item_to_submenu"&gt; &lt;/ImageView&gt; &lt;TextView android:id="@+id/browse_item_row_text" android:textAppearance="?android:attr/textAppearanceLarge" android:textSize="24dp" android:layout_width="fill_parent" android:layout_height="fill_parent" android:text="ABCDEFGHIJKLMNOPQRSTUVWXYZ"&gt; &lt;/TextView&gt; &lt;/RelativeLayout&gt; &lt;/FrameLayout&gt; &lt;/RelativeLayout&gt; </code></pre>
 

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