Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I think your Linear layout is above the imageButton and that's why you can't access the ImageButton.</p> <p><strong>EDIT</strong></p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/relativeLayout1" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="@drawable/screen_background"&gt; &lt;LinearLayout android:id="@+id/linearLayout1" android:layout_width="wrap_content" android:layout_height="fill_parent" android:orientation="vertical" android:layout_alignBottom="@+id/linearLayout01" android:layout_marginBottom="55dp"&gt; &lt;ImageView android:id="@+id/imageView1" android:layout_width="fill_parent" android:layout_height="50dp" android:src="@drawable/tone_movies_banner" android:layout_alignParentTop="true" android:scaleType="fitXY"/&gt; &lt;HorizontalScrollView android:id="@+id/horizontalScroll" android:layout_width="wrap_content" android:layout_height="wrap_content"&gt; &lt;LinearLayout android:id="@+id/linearLayout3" android:layout_width="wrap_content" android:layout_height="wrap_content"&gt; &lt;Button android:id="@+id/actionBtn" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="@drawable/button_action_movies" android:onClick="btnClicker"/&gt; &lt;Button android:id="@+id/comedyBtn" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="@drawable/button_comedy_movies" android:onClick="btnClicker" /&gt; &lt;Button android:id="@+id/loveBtn" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="@drawable/button_love_movies" android:onClick="btnClicker" /&gt; &lt;/LinearLayout&gt; &lt;/HorizontalScrollView&gt; &lt;LinearLayout android:id="@+id/linearLayout01" android:layout_width="fill_parent" android:layout_height="50dp" android:layout_alignParentBottom="true" android:layout_marginBottom="5dp"&gt; &lt;/LinearLayout&gt; &lt;/LinearLayout&gt; &lt;ImageButton android:id="@+id/back_btn" android:layout_width="30dp" android:layout_height="190dp" android:layout_alignParentLeft="true" android:layout_centerVertical="true" android:layout_marginLeft="-5dp" android:background="@drawable/button_movielist_back" /&gt; &lt;/RelativeLayout&gt; </code></pre>
    singulars
    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. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      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