IOS
hefeixia
2021-02-18 49f3c1374873f73dbde2983ca0fcf1fb10bfedbf
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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/white"
        android:orientation="vertical">
    <include layout="@layout/toolbar" />
    <include layout="@layout/search_bar" />
 
    <LinearLayout
 
            android:id="@+id/search_type_layout"
            android:layout_width="match_parent"
            android:layout_height="40dp"
            android:orientation="horizontal">
 
        <TextView
                android:id="@+id/tv_search_team"
                android:gravity="center"
                android:layout_weight="1"
                android:layout_width="0dp"
                android:text="@string/doctor_team"
                android:layout_height="match_parent"></TextView>
 
        <LinearLayout style="@style/common_vertical_division_line_style"></LinearLayout>
 
        <TextView
                android:id="@+id/tv_search_dr"
                android:gravity="center"
                android:layout_weight="1"
                android:layout_width="0dp"
                android:text="@string/doctor"
                android:layout_height="match_parent"></TextView>
 
        <LinearLayout style="@style/common_vertical_division_line_style"></LinearLayout>
 
        <TextView
                android:id="@+id/tv_search_patients"
                android:gravity="center"
                android:layout_weight="1"
                android:layout_width="0dp"
                android:text="@string/patients"
                android:layout_height="match_parent"></TextView>
 
        <LinearLayout style="@style/common_vertical_division_line_style"></LinearLayout>
 
        <TextView
                android:id="@+id/tv_search_record"
                android:gravity="center"
                android:layout_weight="1"
                android:layout_width="0dp"
                android:text="@string/chat_record"
                android:layout_height="match_parent"></TextView>
 
    </LinearLayout>
 
    <FrameLayout
            android:background="@color/white"
            android:id="@+id/containerFrameLayout"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />
 
</LinearLayout>