b66e4091
aarnaude
ajout activités d...
|
1
2
3
4
5
6
7
|
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/hyg1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
|
b66e4091
aarnaude
ajout activités d...
|
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
|
<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/shadow_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/blue_toothbrush"
android:tint="#707070" />
<Button
android:id="@+id/button_id_home"
|
d87c7c33
aarnaude
last commit?
|
33
34
35
36
37
38
39
40
41
42
|
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_hyg1"
|
b66e4091
aarnaude
ajout activités d...
|
43
44
45
|
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
|
d87c7c33
aarnaude
last commit?
|
46
47
48
49
50
|
android:layout_margin="10dp"
android:layout_toEndOf="@id/button_id_home"
android:layout_toStartOf="@id/announce_instruction"
android:gravity="center"
android:textAppearance="@style/TextFont" />
|
b66e4091
aarnaude
ajout activités d...
|
51
|
|
4fbbe27a
aarnaude
ajout de la fonct...
|
52
53
|
<Button
android:id="@+id/announce_instruction"
|
d87c7c33
aarnaude
last commit?
|
54
55
|
android:layout_width="80dp"
android:layout_height="80dp"
|
4fbbe27a
aarnaude
ajout de la fonct...
|
56
57
|
android:layout_alignParentBottom="true"
android:layout_alignParentEnd="true"
|
d87c7c33
aarnaude
last commit?
|
58
59
60
61
|
android:layout_margin="10dp"
android:background="@drawable/speech_icon"
android:onClick="enonceConsigne" />
|
b66e4091
aarnaude
ajout activités d...
|
62
|
</RelativeLayout>
|