-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactivity_gesture_recognition.xml
76 lines (68 loc) · 2.87 KB
/
activity_gesture_recognition.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?xml version="1.0" encoding="utf-8"?>
<!--<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.vidhi.reminderr.GestureRecognition">
</android.support.constraint.ConstraintLayout>
-->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
tools:context="com.example.vidhi.reminderr.GestureRecognition">
<RelativeLayout
android:id="@+id/button_rl"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true">
<TableLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true">
<TableRow>
<Button
android:id="@+id/reset"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/reset"/>
<Button
android:id="@+id/recog"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/recognize"/>
<Button
android:id="@+id/purge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/purge"/>
</TableRow>
</TableLayout>
</RelativeLayout>
<RelativeLayout
android:id="@+id/num_rl"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@id/button_rl">
<TableLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true">
<TableRow>
<Button
android:id="@+id/num0"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Snooze" />
<Button
android:id="@+id/num1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Completed" />
</TableRow>
<TableRow>
</TableRow>
</TableLayout>
</RelativeLayout>
</RelativeLayout>