-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactivity_controlling.xml
More file actions
88 lines (79 loc) · 2.75 KB
/
activity_controlling.xml
File metadata and controls
88 lines (79 loc) · 2.75 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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
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=".Controlling">
<Button
android:id="@+id/push_in"
android:layout_width="150dp"
android:layout_height="50dp"
android:text="Push_In"
android:layout_marginTop="30dp"
android:layout_marginLeft="30dp"/>
<Button
android:id="@+id/push_out"
android:layout_width="150dp"
android:layout_height="50dp"
android:text="Push Out"
android:layout_marginTop="30dp"
android:layout_marginLeft="230dp"/>
<Button
android:id="@+id/forward"
android:layout_width="150dp"
android:layout_height="100dp"
android:text="Forward"
android:layout_marginTop="120dp"
android:layout_marginLeft="125dp"/>
<Button
android:id="@+id/left"
android:layout_width="150dp"
android:layout_height="100dp"
android:text="Left"
android:layout_marginTop="240dp"
android:layout_marginLeft="30dp"/>
<Button
android:id="@+id/right"
android:layout_width="150dp"
android:layout_height="100dp"
android:text="Right"
android:layout_marginTop="240dp"
android:layout_marginLeft="230dp"/>
<Button
android:id="@+id/backward"
android:layout_width="150dp"
android:layout_height="100dp"
android:text="Backward"
android:layout_marginTop="360dp"
android:layout_marginLeft="125dp"/>
<Button
android:id="@+id/pull_in"
android:layout_width="150dp"
android:layout_height="50dp"
android:text="Pull in"
android:layout_marginTop="520dp"
android:layout_marginLeft="30dp"/>
<Button
android:id="@+id/pull_out"
android:layout_width="150dp"
android:layout_height="50dp"
android:text="Pull Out"
android:layout_marginTop="580dp"
android:layout_marginLeft="30dp"/>
<Button
android:id="@+id/lift_up"
android:layout_width="150dp"
android:layout_height="50dp"
android:text="Lift Up"
android:layout_marginTop="520dp"
android:layout_marginLeft="230dp"/>
<Button
android:id="@+id/lift_down"
android:layout_width="150dp"
android:layout_height="50dp"
android:text="Lift Down"
android:layout_marginTop="580dp"
android:layout_marginLeft="230dp"/>
</RelativeLayout>