<?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="match_parent"
|
xmlns:tools="http://schemas.android.com/tools">
|
|
<com.ypx.imagepicker.widget.ShowTypeImageView
|
android:id="@+id/mImageView"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_alignParentTop="true"
|
android:layout_alignParentEnd="true"
|
android:scaleType="centerCrop" />
|
|
<View
|
android:id="@+id/v_masker"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:background="#80000000"
|
android:visibility="gone" />
|
|
<FrameLayout
|
android:id="@+id/mCheckBoxPanel"
|
android:layout_width="50dp"
|
android:layout_height="50dp"
|
android:layout_alignParentEnd="true">
|
|
<CheckBox
|
android:id="@+id/mCheckBox"
|
android:layout_width="20dp"
|
android:layout_height="20dp"
|
android:maxWidth="20dp"
|
android:maxHeight="20dp"
|
android:button="@null"
|
android:layout_marginTop="5dp"
|
android:layout_marginEnd="10dp"
|
android:layout_gravity="end"
|
android:visibility="visible" />
|
|
</FrameLayout>
|
|
<LinearLayout
|
android:id="@+id/mVideoLayout"
|
android:layout_width="match_parent"
|
android:layout_height="30dp"
|
android:layout_alignParentBottom="true"
|
android:background="@mipmap/picker_item_video_mask"
|
android:gravity="center"
|
android:orientation="horizontal">
|
|
<ImageView
|
android:layout_width="20dp"
|
android:layout_height="20dp"
|
android:scaleType="centerInside"
|
android:src="@mipmap/picker_item_video" />
|
|
<TextView
|
android:id="@+id/mVideoTime"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginStart="10dp"
|
tools:text="05:02"
|
android:textColor="@android:color/white"
|
android:textSize="13sp"
|
android:textStyle="bold" />
|
</LinearLayout>
|
|
|
</RelativeLayout>
|