kimi
2021-02-18 0ac056bb5b4c567293482286c80a1b83a467cd33
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
<?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:orientation="vertical"
        android:layout_marginLeft="20dp"
        android:layout_marginRight="20dp"
        android:background="@drawable/shape_top_round_white">
 
    <LinearLayout
            android:layout_marginLeft="@dimen/margin_common"
            android:layout_gravity="center_vertical"
            android:layout_marginTop="27dp"
            android:gravity="center_vertical"
            android:orientation="horizontal"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
 
        <TextView
                android:gravity="center_vertical"
                android:layout_gravity="center_vertical"
                android:id="@+id/tv_title"
                android:singleLine="true"
                android:ellipsize="end"
                android:text="选择您想了解的疾病"
                android:textColor="#FF666666"
                android:textSize="@dimen/text_size_16"
                android:layout_weight="1"
                android:layout_width="0dp"
                android:layout_height="wrap_content" />
 
        <cn.wildfire.chat.kit.widget.SearchView
                android:layout_marginLeft="@dimen/margin_common"
                android:minWidth="70dp"
                android:id="@+id/search_view"
                android:layout_width="wrap_content"
                android:layout_height="30dp"></cn.wildfire.chat.kit.widget.SearchView>
 
        <ImageView
 
                android:layout_marginLeft="@dimen/margin_common_half"
                android:padding="10dp"
                android:id="@+id/iv_close"
                android:src="@mipmap/ic_del_gary"
                android:layout_width="40dp"
                android:layout_height="40dp" />
    </LinearLayout>
 
    <cn.wildfire.chat.kit.widget.FlowTagLayout
            android:id="@+id/ftl_tag_list"
            android:layout_width="match_parent"
            android:layout_weight="1"
            android:layout_height="0dp">
 
    </cn.wildfire.chat.kit.widget.FlowTagLayout>
 
    <LinearLayout
            android:layout_marginBottom="25dp"
            android:orientation="horizontal"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
 
        <LinearLayout
 
                 android:orientation="horizontal"
                android:layout_width="0dp"
                android:layout_weight="1"
                android:layout_gravity="center"
                android:gravity="center"
                android:layout_height="wrap_content">
            <LinearLayout
                    android:id="@+id/ll_changes"
                    android:background="@drawable/shape_button_gray_dark_light_18"
                    android:gravity="center"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content">
 
 
            <ImageView
                    android:id="@+id/iv_recycle"
                    android:layout_marginLeft="28dp"
                    android:layout_width="20dp"
                    android:layout_marginRight="@dimen/margin_common_half"
                    android:src="@mipmap/ic_refresh_green"
                    android:layout_height="20dp"/>
            <TextView
                    android:id="@+id/tv_changes"
                    android:paddingTop="12dp"
                    android:paddingBottom="12dp"
                    android:paddingRight="28dp"
                    android:text="换一批"
                    android:textColor="@color/black_title"
                    android:textSize="@dimen/text_size_18"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"/>
            </LinearLayout>
        </LinearLayout>
 
        <LinearLayout
 
                android:orientation="horizontal"
                android:layout_width="0dp"
                android:layout_weight="1"
                android:layout_gravity="center"
                android:gravity="center"
                android:layout_height="wrap_content">
            <TextView
                    android:id="@+id/tv_commit"
                    android:background="@drawable/shape_button_green"
                    android:paddingTop="12dp"
                    android:paddingBottom="12dp"
                    android:drawableLeft="@mipmap/ic_check_white"
                    android:paddingLeft="28dp"
                    android:paddingRight="28dp"
                    android:drawablePadding="@dimen/margin_common_half"
                    android:text="完 成"
                    android:textColor="@color/white"
                    android:textSize="@dimen/text_size_18"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"/>
        </LinearLayout>
    </LinearLayout>
</LinearLayout>