I don't know the proper name of this feature, here is the image to understand my problem better.
I need to create a layout of a image on the border-bottom of another image like the profile image is on the bottom of the big image.
I am using a CardView which contain these 2 images. My Code:
<android.support.v7.widget.CardView
android:id="@+id/cardview"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:elevation="100dp"
card_view:cardCornerRadius="8dp"
card_view:useCompatPadding="true"
card_view:cardPreventCornerOverlap="false"
>
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/bigImage"
/>
<ImageView
android:layout_width="10dp"
android:layout_height="10dp"
android:src="@drawable/smallImage"
/>
</android.support.v7.widget.CardView>
Can any one help me out with this?