media_image_item.xml
1.97 KB
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
<?xml version="1.0" encoding="utf-8"?>
<layout>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/media_image"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<View
android:visibility="gone"
android:id="@+id/mask_view"
android:background="#88000000"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<ImageView
android:id="@+id/check_image"
android:layout_width="23dp"
android:layout_height="23dp"
android:layout_gravity="top|right"
android:layout_marginRight="5.5dp"
android:layout_marginTop="5.5dp"
android:src="@drawable/xc_weixuan" />
<RelativeLayout
android:visibility="invisible"
android:id="@+id/video_info"
android:background="#6e000000"
android:layout_width="match_parent"
android:layout_gravity="bottom"
android:layout_height="wrap_content">
<TextView
android:layout_marginLeft="6dp"
android:layout_marginBottom="3dp"
android:layout_marginTop="3dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@android:color/white"
android:textSize="12sp"
android:text="@string/video"/>
<TextView
android:id="@+id/textView_size"
android:layout_marginRight="6dp"
android:layout_marginBottom="3dp"
android:layout_marginTop="3dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:textColor="@android:color/white"
android:textSize="12sp"
android:text=""/>
</RelativeLayout>
</FrameLayout>
</layout>