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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:fresco="http://schemas.android.com/apk/res-auto"
    android:id="@+id/fragment_check_in_left_interviewee_row_linear_layout"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingLeft="@dimen/w20dp"
    android:paddingRight="@dimen/w20dp">
    <RelativeLayout
        android:id="@+id/fragment_check_in_left_interviewee_row_relativeLayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingTop="@dimen/h12dp"
        android:paddingBottom="@dimen/h12dp">
        <TextView
            android:id="@+id/fragment_check_in_left_interviewee_row_name"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text=""
            android:layout_centerVertical="true"
            android:textSize="@dimen/w16dp"
            android:textColor="@color/colorText_b"/>
        <TextView
            android:id="@+id/fragment_check_in_left_interviewee_row_dept"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text=""
            android:layout_centerVertical="true"
            android:layout_toRightOf="@id/fragment_check_in_left_interviewee_row_name"
            android:layout_marginLeft="@dimen/w20dp"
            android:textSize="@dimen/w16dp"
            android:textColor="@color/colorText_5"/>
        <com.facebook.drawee.view.SimpleDraweeView
            android:id="@+id/fragment_check_in_left_interviewee_row_photo"
            android:layout_width="@dimen/w36dp"
            android:layout_height="@dimen/h36dp"
            fresco:roundAsCircle = "true"
            android:layout_centerVertical="true"
            android:layout_alignParentRight="true"/>
    </RelativeLayout>
    <View
        android:layout_width="match_parent"
        android:layout_height="@dimen/view_size_1"
        android:background="@color/colorText_b"/>
</LinearLayout>