Note that there are some explanatory texts on larger screens.

plurals
  1. POHow to remove space in between two ImageViews?
    text
    copied!<p>This is my code below, how do i remove space between 'back' button and logo of screen? my screen looks like this</p> <p><img src="https://i.stack.imgur.com/TbSeg.png" alt="enter image description here"></p> <p>and i want to make like this</p> <p><img src="https://i.stack.imgur.com/lwCia.png" alt="enter image description here"> </p> <p>Please help me</p> <pre><code> &lt;LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:background="@drawable/border" android:orientation="horizontal" &gt; &lt;ImageView android:id="@+id/imageView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="@null" android:padding="15dp" android:paddingLeft="3dp" android:src="@drawable/back" /&gt; &lt;RelativeLayout android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" &gt; &lt;ImageView android:id="@+id/test_button_image" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentTop="true" android:background="@null" android:paddingBottom="3dp" android:paddingTop="10dp" android:src="@drawable/imagelogo" &gt; &lt;/ImageView&gt; &lt;TextView android:id="@+id/test_button_text2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignTop="@+id/test_button_image" android:layout_toRightOf="@+id/test_button_image" android:paddingLeft="10dp" android:paddingTop="10dp" android:text="San Diego Unified" android:textColor="#000000" android:textSize="15sp" &gt; &lt;/TextView&gt; &lt;TextView android:id="@+id/test_button_text1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignLeft="@+id/test_button_text2" android:layout_below="@+id/test_button_text2" android:paddingBottom="10dp" android:paddingLeft="10dp" android:text="School District" android:textColor="#000000" &gt; &lt;/TextView&gt; &lt;/RelativeLayout&gt; &lt;ImageView android:id="@+id/imageView2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:paddingTop="15dp" android:paddingRight="10dp" android:src="@drawable/options" /&gt; &lt;/LinearLayout&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