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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<?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:layout_height="match_parent"
    >
    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:gravity="center_horizontal"
            android:orientation="vertical"
            android:id="@+id/fragment_check_in_right_parent"
            >
            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="@dimen/h76dp"
                android:gravity="right|center_vertical"
                android:orientation="horizontal">
                    <TextView
                        android:id="@+id/fragment_check_in_right_print"
                        android:layout_width="@dimen/w40dp"
                        android:layout_height="@dimen/h36dp"
                        android:gravity="center"
                        android:textColor="@android:color/white"
                        android:background="@drawable/u321"
                        android:text=""
                        android:textSize="@dimen/w14dp"
                        />
                    <TextView
                        android:id="@+id/fragment_check_in_right_add"
                        android:layout_width="@dimen/w40dp"
                        android:layout_height="@dimen/h36dp"
                        android:gravity="center"
                        android:layout_marginLeft="@dimen/w10dp"
                        android:textColor="@android:color/white"
                        android:background="@drawable/u249"
                        android:text=""
                        android:textSize="@dimen/w14dp"
                        />
                    <TextView
                        android:id="@+id/fragment_check_in_right_save"
                        android:layout_width="@dimen/w40dp"
                        android:layout_height="@dimen/h36dp"
                        android:gravity="center"
                        android:layout_marginLeft="@dimen/w10dp"
                        android:layout_marginRight="@dimen/w10dp"
                        android:textColor="@android:color/white"
                        android:background="@drawable/u208"
                        android:text=""
                        android:textSize="@dimen/w14dp"/>
            </LinearLayout>
            <LinearLayout
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:orientation="horizontal">
                <cn.com.basic.face.widget.checkin.CheckInRightVisitorCell
                    android:id="@+id/fragment_check_in_right_visitor_cell"
                    android:layout_width="@dimen/w254dp"
                    android:layout_height="@dimen/h350dp"
                    android:background="@drawable/card_bcg"
                    android:orientation="vertical"/>
                <ImageView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:background="@drawable/u252"
                    android:layout_marginLeft="@dimen/w45dp"
                    android:layout_gravity="center_vertical"
                    />
                <cn.com.basic.face.widget.checkin.CheckInRightIntervieweeCell
                    android:id="@+id/fragment_check_in_right_interviewee_cell"
                    android:layout_width="@dimen/w254dp"
                    android:layout_height="@dimen/h350dp"
                    android:background="@drawable/card_bcg"
                    android:layout_marginLeft="@dimen/w45dp"
                    android:orientation="vertical"/>
            </LinearLayout>
            <LinearLayout
                android:layout_width="@dimen/w611dp"
                android:layout_height="wrap_content"
                android:layout_marginTop="@dimen/h20dp"
                android:orientation="vertical">
                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:textColor="@color/colorPrimary"
                    android:textStyle="bold"
                    android:textSize="@dimen/w16dp"
                    android:text="@string/visitor_reason"
                    android:id="@+id/fragment_check_in_right_visitor_reason_text_view"
                    />
                <RelativeLayout
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content">
                    <EditText
                        android:id="@+id/fragment_check_in_right_visitor_reason"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:background="@null"
                        android:layout_marginTop="@dimen/h15dp"
                        android:layout_marginBottom="@dimen/h12dp"
                        android:text=""
                        android:textSize="@dimen/w14dp"
                        android:textColor="@color/colorText_b"
                        />
                    <TextView
                        android:layout_width="@dimen/w40dp"
                        android:layout_height="@dimen/w40dp"
                        android:background="@drawable/u36"
                        android:id="@+id/fragment_check_in_right_visitor_reason_edit"
                        android:layout_alignParentRight="true"
                        />
                    <TextView
                        android:layout_width="@dimen/w40dp"
                        android:layout_height="@dimen/w40dp"
                        android:background="@drawable/u38"
                        android:id="@+id/fragment_check_in_right_visitor_reason_more"
                        android:layout_toLeftOf="@id/fragment_check_in_right_visitor_reason_edit"
                        android:layout_marginRight="@dimen/w10dp"
                        />
                </RelativeLayout>
 
                <View
                    android:layout_width="match_parent"
                    android:layout_height="@dimen/view_size_1"
                    android:background="@color/colorText_b"/>
                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:textColor="@color/colorPrimary"
                    android:textStyle="bold"
                    android:layout_marginTop="@dimen/h20dp"
                    android:textSize="@dimen/w16dp"
                    android:text="@string/visitor_remark"/>
                <EditText
                    android:id="@+id/fragment_check_in_right_remark"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:background="@null"
                    android:layout_marginTop="@dimen/h15dp"
                    android:layout_marginBottom="@dimen/h12dp"
                    android:hint=""
                    android:textColorHint="@color/colorText_b"
                    android:textSize="@dimen/w14dp"
                    android:textColor="@color/colorText_b"/>
                <View
                    android:layout_width="match_parent"
                    android:layout_height="@dimen/view_size_1"
                    android:background="@color/colorText_b"/>
            </LinearLayout>
        </LinearLayout>
    </ScrollView>
</LinearLayout>