popu_shaixuan.xml
3.06 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
<?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="wrap_content"
android:orientation="vertical"
android:padding="@dimen/size_dp_10"
android:layout_marginTop="@dimen/size_dp_10"
android:background="@color/white"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:layout_gravity="center_horizontal"
android:layout_width="@dimen/size_dp_60"
android:textSize="@dimen/textSize16"
android:text="@string/report"
android:textStyle="bold"
android:textColor="@color/textColor"
android:layout_height="wrap_content" />
<com.huxq17.handygridview.HandyGridView
android:layout_marginLeft="@dimen/size_dp_10"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/handyGridView"
android:numColumns="3"
android:horizontalSpacing="@dimen/size_dp_15"
android:verticalSpacing="@dimen/size_dp_15"
android:gravity="center"
android:background="@color/white"
></com.huxq17.handygridview.HandyGridView>
</LinearLayout>
<LinearLayout
android:layout_marginTop="@dimen/size_dp_10"
android:layout_marginBottom="@dimen/size_dp_10"
android:focusable="true"
android:focusableInTouchMode="true"
android:gravity="center_vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="@dimen/size_dp_60"
android:textSize="@dimen/textSize16"
android:text="关键字"
android:textStyle="bold"
android:textColor="@color/textColor"
android:layout_height="wrap_content" />
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="请输入要搜索的内容"
android:textSize="@dimen/textSize14"
android:textColor="@color/textColor"
android:background="@drawable/shape_edit_radius4_balck"
android:gravity="center"
android:padding="@dimen/size_dp_5"
android:layout_marginLeft="@dimen/size_dp_10"
/>
</LinearLayout>
<TextView
android:id="@+id/tvSubmit"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/white"
android:textSize="@dimen/textSize16"
android:text="确定"
android:paddingLeft="@dimen/size_dp_60"
android:paddingRight="@dimen/size_dp_60"
android:background="@drawable/shape_blue_select"
android:paddingTop="@dimen/size_dp_5"
android:paddingBottom="@dimen/size_dp_5"
android:layout_gravity="center_horizontal"
android:layout_marginTop="@dimen/size_dp_10"
android:layout_marginBottom="@dimen/size_dp_10"
/>
</LinearLayout>