xuxiuxi
2017-05-04 15d0c49e85159b9e27870aff5280c0cd95b103c4
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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/fragment_surveillance_photo_cell_relative_layout"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    xmlns:fresco="http://schemas.android.com/apk/res-auto"
    >
    <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">
        <com.facebook.drawee.view.SimpleDraweeView
            android:id="@+id/fragment_surveillance_photo_cell_photo"
            android:layout_width="@dimen/w122dp"
            android:layout_height="@dimen/h127dp"
            android:layout_alignParentBottom="true"
            android:scaleType="centerCrop"
            android:paddingTop="@dimen/h15dp"
            android:paddingRight="@dimen/w5dp"
            android:paddingLeft="@dimen/w5dp"
            fresco:roundedCornerRadius="@dimen/w5dp"
            android:background="#14000000"
            />
        <com.facebook.drawee.view.SimpleDraweeView
            android:id="@+id/fragment_surveillance_photo_cell_photo1"
            android:layout_width="@dimen/w122dp"
            android:layout_height="@dimen/h127dp"
            android:layout_alignParentBottom="true"
            android:scaleType="centerCrop"
            android:paddingTop="@dimen/h15dp"
            android:paddingRight="@dimen/w5dp"
            android:paddingLeft="@dimen/w5dp"
            fresco:roundedCornerRadius="@dimen/w5dp"
            android:alpha="0.55"
            />
    </RelativeLayout>
    <ImageView
        android:id="@+id/fragment_surveillance_photo_cell_select"
        android:layout_width="@dimen/w50dp"
        android:layout_height="@dimen/h50dp"
        android:src="@drawable/u241"
        android:gravity="center"
        android:layout_marginBottom="@dimen/h20dp"
        android:layout_marginLeft="@dimen/w60dp"
        android:layout_alignParentBottom="true"
        android:textColor="@android:color/white"
        android:layout_alignParentLeft="true"
        android:visibility="gone"
        />
 
</RelativeLayout>