pans
2017-08-30 71c92f101b6c8b4a678a8c3cfe2d8edbf488efa4
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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/fragment_supervisory_bottom_attendance_cell_relative_layout"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    xmlns:fresco="http://schemas.android.com/apk/res-auto"
    >
 
    <com.facebook.drawee.view.SimpleDraweeView
        android:id="@+id/fragment_home_bottom_attendance_cell_photo"
        android:layout_width="@dimen/w122dp"
        android:layout_height="@dimen/h127dp"
        fresco:roundedCornerRadius="@dimen/w5dp"
        android:layout_alignParentBottom="true"
        android:scaleType="centerCrop"
        android:paddingTop="@dimen/h15dp"
        android:paddingRight="@dimen/w5dp"
        android:paddingLeft="@dimen/w5dp"
        />
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="@dimen/h20dp"
        android:background="#40000000"
        android:layout_alignParentBottom="true"
        android:layout_marginLeft="@dimen/w2dp"
        android:layout_marginRight="@dimen/w2dp"
        android:layout_marginBottom="@dimen/w2dp"
        >
 
        <TextView
            android:id="@+id/fragment_home_bottom_attendance_cell_name"
            android:layout_width="@dimen/view_size_0"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:text=""
            android:textSize="@dimen/w12dp"
            android:gravity="center"
            android:textColor="@android:color/white"/>
        <View
            android:layout_width="1dp"
            android:layout_height="match_parent"
            android:background="@android:color/white"/>
        <TextView
            android:id="@+id/fragment_home_bottom_attendance_cell_status"
            android:layout_width="@dimen/view_size_0"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:text="签到"
            android:textSize="@dimen/w12dp"
            android:gravity="center"
            android:textColor="@android:color/white"
            android:background="#00000000"
            />
    </LinearLayout>
 
</RelativeLayout>