lmw
2025-04-24 718f31c92e2029d05260810435a2c70cef6e6ce5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?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>