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
115
|
<?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" />
<TextView
|
4fbbe27a
aarnaude
ajout de la fonct...
|
116
|
android:id="@+id/cons_tut5"
|
48365340
aarnaude
ajout scène 4 tri...
|
117
118
119
120
121
|
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_margin="20dp"
|
c9866333
aarnaude
ajout scènes thèm...
|
122
|
android:maxWidth="650dp"
|
48365340
aarnaude
ajout scène 4 tri...
|
123
124
125
126
127
128
129
130
131
|
android:textAppearance="@style/TextFont" />
<Button
android:id="@+id/button_id_home"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentStart="true"
|
c9866333
aarnaude
ajout scènes thèm...
|
132
|
android:layout_margin="20dp"
|
48365340
aarnaude
ajout scène 4 tri...
|
133
134
135
|
android:onClick="backHome"
android:text="@string/home" />
|
4fbbe27a
aarnaude
ajout de la fonct...
|
136
137
138
139
140
141
142
143
144
|
<Button
android:id="@+id/announce_instruction"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentEnd="true"
android:layout_margin="20dp"
android:onClick="enonceConsigne"
android:text="@string/instruction" />
|
48365340
aarnaude
ajout scène 4 tri...
|
145
|
</RelativeLayout>
|