12345678910111213141516171819202122232425262728293031323334 |
- <?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"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:background="@color/white"
- android:padding="5dp">
- <TextView
- android:id="@+id/tv_meg"
- android:layout_width="95dp"
- android:layout_height="95dp"
- android:background="@drawable/ic_bgm_photo_add"
- android:gravity="center"
- android:text="+"
- android:textColor="@color/purple_e0"
- android:textSize="45sp" />
- <com.makeramen.roundedimageview.RoundedImageView
- android:id="@+id/img_show"
- android:layout_width="95dp"
- android:layout_height="95dp"
- android:scaleType="fitXY"
- />
- <TextView
- android:id="@+id/tv_delete"
- android:layout_width="18dp"
- android:layout_height="18dp"
- android:layout_marginTop="2dp"
- android:layout_marginLeft="80dp"
- android:background="@mipmap/icon_dele"
- android:visibility="gone" />
- </RelativeLayout>
|