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
57
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:background="@android:color/white"
    android:duplicateParentState="true"
    android:layout_height="wrap_content"
    xmlns:fresco="http://schemas.android.com/apk/res-auto"
    >
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingTop="@dimen/h15dp"
        android:paddingBottom="@dimen/h15dp"
        android:layout_marginLeft="@dimen/w24dp"
        android:id="@+id/fragment_attendance_left_relative_layout"
        >
        <RadioButton
            android:id="@+id/fragment_attendance_left_person_row_check_box"
            android:layout_centerVertical="true"
            android:clickable="true"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
        <TextView
            android:id="@+id/fragment_attendance_left_person_row_name"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:layout_toRightOf="@id/fragment_attendance_left_person_row_check_box"
            android:layout_marginLeft="@dimen/w12dp"
            android:textColor="@color/colorText_5"
            android:text=""
            android:textSize="@dimen/w14dp"/>
        <com.facebook.drawee.view.SimpleDraweeView
            android:id="@+id/fragment_attendance_left_person_row_photo"
            android:layout_width="@dimen/w36dp"
            android:layout_height="@dimen/h36dp"
            fresco:roundAsCircle = "true"
            android:layout_centerVertical="true"
            android:layout_alignParentRight="true"/>
        <TextView
            android:id="@+id/fragment_attendance_left_person_row_status"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:layout_toLeftOf="@id/fragment_attendance_left_person_row_photo"
            android:layout_marginRight="@dimen/view_size_10"
            android:textColor="@color/colorText_5"
            android:text=""
            android:textSize="@dimen/w14dp"/>
    </RelativeLayout>
    <View
        android:id="@+id/fragment_attendance_left_line"
        android:layout_width="match_parent"
        android:layout_height="@dimen/view_size_1"
        android:layout_marginLeft="@dimen/w24dp"
        android:background="@color/colorText_b"/>
</LinearLayout>