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
<?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:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/card_bcg"
    android:gravity="center_horizontal">
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/fragment_phone_call_right_interviewee_cell_name"
        android:textColor="@color/colorText_5"
        android:paddingTop="@dimen/h5dp"
        android:paddingBottom="@dimen/h5dp"
        android:textSize="@dimen/w24dp"
        android:text="被访人姓名"
        />
 
    <View
        android:layout_width="match_parent"
        android:layout_height="@dimen/view_size_1"
        android:background="@color/colorText_b"/>
    <LinearLayout
        android:id="@+id/visitor_to_ll"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical">
        <!--<com.facebook.drawee.view.SimpleDraweeView
            android:id="@+id/fragment_phone_call_right_interviewee_cell_photo"
            android:layout_width="100dp"
            android:layout_height="100dp"
            fresco:roundAsCircle = "true"
            android:layout_gravity="center_horizontal"
            android:layout_marginTop="@dimen/view_size_25"
            />-->
        <RelativeLayout
            android:layout_width="@dimen/w100dp"
            android:layout_height="@dimen/h100dp"
            android:layout_marginTop="@dimen/h25dp"
            android:layout_gravity="center_horizontal"
            >
            <com.facebook.drawee.view.SimpleDraweeView
                android:id="@+id/fragment_phone_call_right_interviewee_cell_photo"
                android:layout_width="@dimen/w100dp"
                android:layout_height="@dimen/h100dp"
                fresco:roundAsCircle = "true"
                android:layout_gravity="center_horizontal"
                android:background="@drawable/u202"
                android:layout_alignParentTop="true" />
            <TextView
                android:id="@+id/fragment_phone_call_right_interviewee_cell_photo_placeholder"
                android:layout_width="@dimen/w100dp"
                android:layout_height="@dimen/h100dp"
                android:layout_gravity="center_horizontal"
                android:text="添加\n被访人员"
                android:gravity="center"
                android:layout_alignParentTop="true"
                android:textSize="@dimen/w14dp"
                />
        </RelativeLayout>
        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="@dimen/h40dp"
            android:layout_gravity="center_horizontal"
            android:orientation="horizontal">
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="部门:"
                android:textSize="@dimen/w16dp"
                android:textColor="@color/colorText_5"/>
            <TextView
                android:id="@+id/fragment_phone_call_right_interviewee_cell_dept"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text=""
                android:textSize="@dimen/w16dp"
                android:textColor="@color/colorText_b"/>
        </LinearLayout>
        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="@dimen/h25dp"
            android:layout_gravity="center_horizontal"
            android:orientation="horizontal">
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="职务:"
                android:textSize="@dimen/w16dp"
                android:textColor="@color/colorText_5"/>
            <TextView
                android:id="@+id/fragment_phone_call_right_interviewee_cell_post"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text=""
                android:textSize="@dimen/w16dp"
                android:textColor="@color/colorText_b"/>
        </LinearLayout>
        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="@dimen/h25dp"
            android:gravity="center_horizontal"
            android:orientation="horizontal">
            <TextView
                android:id="@+id/fragment_phone_call_right_interviewee_cell_call_mobile"
                android:layout_width="@dimen/w90dp"
                android:layout_height="@dimen/h36dp"
                android:gravity="center"
                android:textColor="@android:color/white"
                android:background="@drawable/main_btn_bcg"
                android:textSize="@dimen/w16dp"
                android:text="呼叫手机"/>
            <TextView
                android:id="@+id/fragment_phone_call_right_interviewee_cell_call_tel"
                android:layout_width="@dimen/w90dp"
                android:layout_height="@dimen/h36dp"
                android:gravity="center"
                android:layout_marginLeft="@dimen/w10dp"
                android:textColor="@android:color/white"
                android:background="@drawable/main_btn_bcg"
                android:textSize="@dimen/w16dp"
                android:text="呼叫座机"/>
 
        </LinearLayout>
    </LinearLayout>
 
</LinearLayout>