b66e4091
aarnaude
ajout activités d...
|
1
2
3
4
5
6
7
8
|
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/hyg3"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
|
4fbbe27a
aarnaude
ajout de la fonct...
|
9
|
android:id="@+id/cons_hyg3"
|
b66e4091
aarnaude
ajout activités d...
|
10
11
12
13
14
|
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...
|
15
|
android:maxWidth="650dp"
|
b66e4091
aarnaude
ajout activités d...
|
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
|
android:textAppearance="@style/TextFont" />
<ImageView
android:id="@+id/blue_toothbrush"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_centerVertical="true"
android:layout_margin="100dp"
android:adjustViewBounds="true"
android:maxWidth="300dp"
android:src="@drawable/blue_toothbrush" />
<ImageView
android:id="@+id/red_toothbrush"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_centerVertical="true"
android:layout_margin="100dp"
android:adjustViewBounds="true"
android:maxWidth="300dp"
android:src="@drawable/red_toothbrush" />
<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...
|
46
|
android:layout_margin="20dp"
|
b66e4091
aarnaude
ajout activités d...
|
47
|
android:onClick="backHome"
|
a5c66bd7
aarnaude
modif boutons/typ...
|
48
|
android:textAppearance="@style/TextFont"
|
b66e4091
aarnaude
ajout activités d...
|
49
50
|
android:text="@string/home" />
|
4fbbe27a
aarnaude
ajout de la fonct...
|
51
52
53
54
55
56
57
58
|
<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"
|
a5c66bd7
aarnaude
modif boutons/typ...
|
59
|
android:textAppearance="@style/TextFont"
|
4fbbe27a
aarnaude
ajout de la fonct...
|
60
|
android:text="@string/instruction" />
|
b66e4091
aarnaude
ajout activités d...
|
61
|
</RelativeLayout>
|