<?xml version="1.0" encoding="utf-8"?>
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:id="@+id/rootView"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
|
<ImageView
|
android:id="@+id/iv_image"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:scaleType="centerCrop" />
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="40dp"
|
android:layout_alignParentBottom="true"
|
android:background="@mipmap/picker_item_video_mask" />
|
|
<TextView
|
android:id="@+id/mTvDuration"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_alignParentEnd="true"
|
android:layout_alignParentBottom="true"
|
android:gravity="end"
|
android:paddingEnd="5dp"
|
android:paddingBottom="5dp"
|
android:text=""
|
android:textColor="@android:color/white"
|
android:textSize="14sp" />
|
|
<View
|
android:id="@+id/v_mask"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent" />
|
|
<View
|
android:id="@+id/v_select"
|
android:layout_width="40dp"
|
android:layout_height="40dp"
|
android:layout_alignParentEnd="true" />
|
|
<TextView
|
android:id="@+id/mTvIndex"
|
android:layout_width="22dp"
|
android:layout_height="22dp"
|
android:layout_alignParentEnd="true"
|
android:layout_marginTop="5dp"
|
android:layout_marginEnd="5dp"
|
android:background="@mipmap/picker_icon_unselect"
|
android:gravity="center"
|
android:text=""
|
android:textColor="#FFFFFF" />
|
|
</RelativeLayout>
|