-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilter_map.xml
60 lines (52 loc) · 1.94 KB
/
filter_map.xml
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
<?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:layout_margin="10dp"
android:orientation="vertical">
<EditText
android:id="@+id/searchET"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="textPersonName"
android:text="Search" />
<CheckBox
android:id="@+id/chkFilter1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/acaBuild" />
<CheckBox
android:id="@+id/chkFilter2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/Diner" />
<CheckBox
android:id="@+id/chkFilter3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/Fitness" />
<CheckBox
android:id="@+id/chkFilter4"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/Residence" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="10dp"
android:orientation="horizontal">
<Button
android:id="@+id/button7"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/Cancel" />
<Button
android:id="@+id/button6"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/Apply" />
</LinearLayout>
</LinearLayout>