48365340
aarnaude
ajout scène 4 tri...
|
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
|
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tut5"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ImageView
android:id="@+id/blue_rectangle51"
android:layout_width="70dp"
android:layout_height="70dp"
android:layout_alignParentStart="true"
android:layout_margin="50dp"
android:background="@drawable/blue_rectangle" />
<ImageView
android:id="@+id/red_rectangle51"
android:layout_width="70dp"
android:layout_height="70dp"
android:layout_margin="50dp"
android:layout_toEndOf="@id/blue_rectangle51"
android:background="@drawable/red_rectangle" />
<ImageView
android:id="@+id/green_rectangle51"
android:layout_width="70dp"
android:layout_height="70dp"
android:layout_margin="50dp"
android:layout_toEndOf="@id/red_rectangle51"
android:background="@drawable/green_rectangle" />
<ImageView
android:id="@+id/blue_rectangle52"
android:layout_width="70dp"
android:layout_height="70dp"
android:layout_margin="50dp"
android:layout_toEndOf="@id/green_rectangle51"
android:background="@drawable/blue_rectangle" />
<ImageView
android:id="@+id/red_rectangle52"
android:layout_width="70dp"
android:layout_height="70dp"
android:layout_margin="50dp"
android:layout_toEndOf="@id/blue_rectangle52"
android:background="@drawable/red_rectangle" />
<ImageView
android:id="@+id/green_rectangle52"
android:layout_width="70dp"
android:layout_height="70dp"
android:layout_margin="50dp"
android:layout_toEndOf="@id/red_rectangle52"
android:background="@drawable/green_rectangle" />
<ImageView
android:id="@+id/red_rectangle53"
android:layout_width="70dp"
android:layout_height="70dp"
android:layout_alignParentStart="true"
android:layout_below="@id/blue_rectangle51"
android:layout_margin="50dp"
android:background="@drawable/red_rectangle" />
<ImageView
android:id="@+id/green_rectangle53"
android:layout_width="70dp"
android:layout_height="70dp"
android:layout_below="@id/blue_rectangle51"
android:layout_margin="50dp"
android:layout_toEndOf="@id/red_rectangle53"
android:background="@drawable/green_rectangle" />
<ImageView
android:id="@+id/blue_rectangle53"
android:layout_width="70dp"
android:layout_height="70dp"
android:layout_below="@id/blue_rectangle51"
android:layout_margin="50dp"
android:layout_toEndOf="@id/green_rectangle53"
android:background="@drawable/blue_rectangle" />
<ImageView
android:id="@+id/red_rectangle54"
android:layout_width="70dp"
android:layout_height="70dp"
android:layout_below="@id/blue_rectangle51"
android:layout_margin="50dp"
android:layout_toEndOf="@id/blue_rectangle53"
android:background="@drawable/red_rectangle" />
<ImageView
android:id="@+id/green_rectangle54"
android:layout_width="70dp"
android:layout_height="70dp"
android:layout_below="@id/blue_rectangle51"
android:layout_margin="50dp"
android:layout_toEndOf="@id/red_rectangle54"
android:background="@drawable/green_rectangle" />
<ImageView
android:id="@+id/blue_rectangle54"
android:layout_width="70dp"
android:layout_height="70dp"
android:layout_below="@id/blue_rectangle51"
android:layout_margin="50dp"
android:layout_toEndOf="@id/green_rectangle54"
android:background="@drawable/blue_rectangle" />
|
48365340
aarnaude
ajout scène 4 tri...
|
115
116
|
<Button
android:id="@+id/button_id_home"
|
d87c7c33
aarnaude
last commit?
|
117
118
119
120
121
122
123
124
125
126
|
android:layout_width="80dp"
android:layout_height="80dp"
android:layout_alignParentBottom="true"
android:layout_alignParentStart="true"
android:layout_margin="10dp"
android:background="@drawable/app_menu"
android:onClick="backHome" />
<TextView
android:id="@+id/cons_tut5"
|
48365340
aarnaude
ajout scène 4 tri...
|
127
128
129
|
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
|
d87c7c33
aarnaude
last commit?
|
130
131
132
133
|
android:layout_margin="10dp"
android:layout_toEndOf="@id/button_id_home"
android:layout_toStartOf="@id/announce_instruction"
android:gravity="center"
|
a5c66bd7
aarnaude
modif boutons/typ...
|
134
|
android:textAppearance="@style/TextFont" />
|
48365340
aarnaude
ajout scène 4 tri...
|
135
|
|
4fbbe27a
aarnaude
ajout de la fonct...
|
136
137
|
<Button
android:id="@+id/announce_instruction"
|
d87c7c33
aarnaude
last commit?
|
138
139
|
android:layout_width="80dp"
android:layout_height="80dp"
|
4fbbe27a
aarnaude
ajout de la fonct...
|
140
141
|
android:layout_alignParentBottom="true"
android:layout_alignParentEnd="true"
|
d87c7c33
aarnaude
last commit?
|
142
143
144
145
|
android:layout_margin="10dp"
android:background="@drawable/speech_icon"
android:onClick="enonceConsigne" />
|
48365340
aarnaude
ajout scène 4 tri...
|
146
|
</RelativeLayout>
|