42 lines
1.5 KiB
XML
42 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/itemLayout"
|
|
android:layout_width="63dp"
|
|
android:layout_height="70dp"
|
|
android:orientation="vertical"
|
|
tools:ignore="MissingDefaultResource">
|
|
|
|
<com.makeramen.roundedimageview.RoundedImageView
|
|
android:id="@+id/avatar01"
|
|
android:layout_width="42dp"
|
|
android:layout_height="42dp"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_centerVertical="true"
|
|
android:scaleType="centerCrop"
|
|
android:src="@mipmap/icon_data_empty"
|
|
app:riv_corner_radius="15dp" />
|
|
|
|
<com.makeramen.roundedimageview.RoundedImageView
|
|
android:id="@+id/avatar02"
|
|
android:layout_width="60dp"
|
|
android:layout_height="60dp"
|
|
android:layout_centerHorizontal="true"
|
|
android:padding="1dp"
|
|
android:layout_centerVertical="true"
|
|
android:scaleType="centerCrop"
|
|
android:src="@mipmap/icon_data_empty"
|
|
android:background="@drawable/bg_user_home_img"
|
|
android:visibility="gone"
|
|
app:riv_corner_radius="15dp" />
|
|
|
|
<ImageView
|
|
android:id="@+id/del"
|
|
android:layout_width="15dp"
|
|
android:layout_height="15dp"
|
|
android:layout_alignParentEnd="true"
|
|
android:src="@mipmap/icon_img_del"
|
|
android:visibility="gone" />
|
|
|
|
</RelativeLayout> |