ht_center_customer_view.xml
3.8 KB
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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="20dp"
android:id="@+id/ht_customer_ly"
android:showDividers="middle">
<LinearLayout
android:id="@+id/ht_tv_call_phone"
android:layout_width="match_parent"
android:layout_height="45dp"
android:orientation="horizontal"
android:background="@drawable/ht_edittext_bg"
android:gravity="center"
android:layout_margin="10dp">
<ImageView
android:layout_width="20dp"
android:layout_height="20dp"
android:background="@drawable/ht_icon_qq" />
<TextView
android:layout_width="wrap_content"
android:text="客服热线"
android:textStyle="bold"
style="@style/ht_dialog_text_style_1"
android:layout_height="wrap_content" />
</LinearLayout>
<LinearLayout
android:id="@+id/ht_tv_add_qq"
android:layout_width="match_parent"
android:layout_height="45dp"
android:orientation="horizontal"
android:background="@drawable/ht_edittext_bg"
android:gravity="center"
android:layout_margin="10dp">
<ImageView
android:layout_width="20dp"
android:layout_height="20dp"
android:background="@drawable/ht_icon_qq" />
<TextView
android:layout_width="wrap_content"
android:text="QQ客服"
android:textStyle="bold"
style="@style/ht_dialog_text_style_1"
android:layout_height="wrap_content" />
</LinearLayout>
<LinearLayout
android:id="@+id/ht_tv_add_qq_group"
android:layout_width="match_parent"
android:layout_height="45dp"
android:orientation="horizontal"
android:background="@drawable/ht_edittext_bg"
android:gravity="center"
android:layout_margin="10dp">
<ImageView
android:layout_width="20dp"
android:layout_height="20dp"
android:background="@drawable/ht_icon_qq" />
<TextView
android:layout_width="wrap_content"
android:text="玩家QQ群"
android:textStyle="bold"
style="@style/ht_dialog_text_style_1"
android:layout_height="wrap_content" />
</LinearLayout>
</LinearLayout>
<LinearLayout
android:id="@+id/ht_customer_no_ly"
android:layout_width="wrap_content"
android:orientation="vertical"
android:visibility="gone"
android:layout_centerInParent="true"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/ht_gift_center_nothing"
android:layout_width="80dp"
android:layout_height="80dp"
android:background="@drawable/ht_icon_exit"
android:layout_gravity="center" />
<TextView
android:layout_width="wrap_content"
android:text="客服正在赶来中~~"
android:layout_gravity="center"
android:textSize="16sp"
android:textColor="@color/ht_main_color_text"
android:layout_margin="5dp"
android:layout_height="wrap_content" />
</LinearLayout>
</RelativeLayout>