Blame view

app/src/main/res/layout/hygiene6_display.xml 2.88 KB
c9866333   aarnaude   ajout scènes thèm...
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
  <?xml version="1.0" encoding="utf-8"?>
  <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
      android:id="@+id/hyg6"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:orientation="vertical">
  
      <ImageView
          android:id="@+id/marseille_soap"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_alignParentStart="true"
          android:layout_alignParentTop="true"
          android:layout_margin="50dp"
          android:adjustViewBounds="true"
          android:maxWidth="250dp"
          android:src="@drawable/marseille_soap" />
  
      <ImageView
          android:id="@+id/washing_hands"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_alignParentEnd="true"
          android:layout_alignParentTop="true"
          android:layout_margin="50dp"
          android:adjustViewBounds="true"
          android:maxWidth="250dp"
          android:src="@drawable/washing_hands" />
  
      <ImageView
          android:id="@+id/brushing_teeth"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_alignParentStart="true"
          android:layout_below="@id/marseille_soap"
          android:layout_margin="50dp"
          android:adjustViewBounds="true"
          android:maxWidth="250dp"
          android:src="@drawable/brushing_teeth" />
  
      <ImageView
          android:id="@+id/blue_toothbrush_pic"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_alignParentEnd="true"
          android:layout_below="@id/washing_hands"
          android:layout_margin="50dp"
          android:adjustViewBounds="true"
          android:maxWidth="250dp"
          android:src="@drawable/blue_toothbrush_pic" />
  
      <TextView
          android:id="@+id/cons_hyg6"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_alignParentBottom="true"
          android:layout_centerHorizontal="true"
          android:layout_margin="20dp"
          android:maxWidth="650dp"
          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"
          android:layout_margin="20dp"
          android:onClick="backHome"
          android:text="@string/home" />
  
      <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" />
  
  </RelativeLayout>