22 lines
951 B
XML
22 lines
951 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/dp_75"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_marginTop="@dimen/dp_15">
|
|
<com.makeramen.roundedimageview.RoundedImageView
|
|
android:id="@+id/img_pic"
|
|
android:layout_width="@dimen/dp_105"
|
|
android:layout_height="@dimen/dp_75"
|
|
android:src="@mipmap/img_add_product_list"
|
|
android:layout_centerVertical="true"
|
|
android:layout_centerHorizontal="true"
|
|
app:riv_corner_radius="@dimen/dp_8"
|
|
android:scaleType="fitXY"/>
|
|
<ImageView
|
|
android:id="@+id/img_delete"
|
|
android:layout_width="@dimen/dp_20"
|
|
android:layout_height="@dimen/dp_20"
|
|
android:layout_alignParentRight="true"
|
|
android:src="@mipmap/img_delete_blue_2"/>
|
|
</RelativeLayout> |