I have the following code:
<LinearLayout
android:id="@+id/aceptar_y_rechazar_tu_mesa"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:orientation="horizontal"
android:padding="10dp"
>
<ImageView
android:id="@+id/aceptar_tu_mesa"
android:layout_width="20dp"
android:layout_height="20dp"
android:scaleType="centerInside"
android:src="@drawable/checked"
/>
<ImageView
android:id="@+id/rechazar_tu_mesa"
android:layout_width="20dp"
android:layout_height="20dp"
android:scaleType="centerInside"
android:src="@drawable/menos"
/>
</LinearLayout>
and visualy is this:
I need separate them, but when I aplly a padding-rigth this happen:
What can I do to fix?