If you want to separate your images, you can follow this.
1) Use android: layout_marginRight relative to the second image.
<ImageView
android:id="@+id/aceptar_tu_mesa"
android:layout_marginRight="10dp"
..... />
<ImageView
android:id="@+id/rechazar_tu_mesa"
....../>
2) Use android: layout_marginLeft relative to the First Image.
<ImageView
android:id="@+id/aceptar_tu_mesa"
..... />
<ImageView
android:id="@+id/rechazar_tu_mesa"
android:layout_marginLeft="10dp"
....../>
3) You can use the view between the two images to separate them
<ImageView
android:id="@+id/aceptar_tu_mesa"
..... />
<View
android:layout_width="10dp"
android:layout_height="10dp"/>
<ImageView
android:id="@+id/rechazar_tu_mesa"
....../>
source
share