I am going to create a cross delete button for an icon in RelativeLayout.
It should look like this:
Unfortunately I can't place the delete button outside the icon.
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/icon"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignRight="@id/icon"
android:src="@mipmap/delete_button"/>
</RelativeLayout>
If I add some margin to the delete button, the button will be smaller but it is still inside the icon.
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignRight="@id/icon"
android:layout_marginLeft="45dp"
android:src="@mipmap/delete_button"/>
After I add margin to icon imageview, the position still incorrect, if I delete the layout_alignRight
of delete button, it is right position on the left.
You can't place nested view outside of the parent view rectangle (actually you can, but it will be cropped with parent view rectangle).
Try to do something like this (add layout_margin to the icon):
Remove android:layout_alignRight="@id/icon" and your layout will be a little bit better.