Blame view

app/src/main/res/layout/hygiene4_display.xml 4.74 KB
b66e4091   aarnaude   ajout activités d...
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
  <?xml version="1.0" encoding="utf-8"?>
  <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
      android:id="@+id/hyg4"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:orientation="vertical">
  
      <ImageView
          android:id="@+id/anchor_toilet_bag"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_centerHorizontal="true"
          android:layout_margin="10dp"
          android:adjustViewBounds="true"
          android:maxWidth="400dp"
          android:src="@drawable/toilet_bag" />
  
      <ImageView
          android:id="@+id/soap"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_alignParentStart="true"
          android:layout_below="@id/anchor_toilet_bag"
          android:layout_margin="10dp"
          android:adjustViewBounds="true"
          android:maxWidth="150dp"
          android:src="@drawable/soap" />
  
      <ImageView
          android:id="@+id/bmw"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_below="@id/anchor_toilet_bag"
          android:layout_margin="10dp"
          android:layout_toEndOf="@id/soap"
          android:adjustViewBounds="true"
          android:maxWidth="200dp"
          android:src="@drawable/bmw" />
  
      <ImageView
          android:id="@+id/elephant"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_below="@id/anchor_toilet_bag"
          android:layout_margin="10dp"
          android:layout_toStartOf="@id/shampoo"
          android:adjustViewBounds="true"
          android:maxWidth="180dp"
          android:src="@drawable/elephant" />
  
      <ImageView
          android:id="@+id/shampoo"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_alignParentEnd="true"
          android:layout_below="@id/anchor_toilet_bag"
          android:layout_margin="10dp"
          android:adjustViewBounds="true"
          android:maxWidth="120dp"
          android:src="@drawable/shampoo" />
  
      <ImageView
          android:id="@+id/toothpaste"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_below="@id/blue_toothbrush_pic"
          android:layout_margin="10dp"
          android:layout_toEndOf="@id/trumpet"
          android:adjustViewBounds="true"
          android:maxWidth="200dp"
          android:src="@drawable/toothpaste" />
  
      <ImageView
          android:id="@+id/blue_toothbrush_pic"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_below="@id/anchor_toilet_bag"
          android:layout_centerHorizontal="true"
          android:layout_margin="10dp"
          android:layout_toEndOf="@id/trumpet"
          android:adjustViewBounds="true"
          android:maxWidth="200dp"
          android:src="@drawable/blue_toothbrush_pic" />
  
      <ImageView
          android:id="@+id/towel"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_below="@id/soap"
          android:layout_margin="10dp"
          android:adjustViewBounds="true"
          android:maxWidth="150dp"
          android:src="@drawable/towel" />
  
      <ImageView
          android:id="@+id/snail"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_alignParentEnd="true"
          android:layout_below="@id/shampoo"
          android:layout_margin="10dp"
          android:adjustViewBounds="true"
          android:maxWidth="200dp"
          android:src="@drawable/snail" />
  
      <ImageView
          android:id="@+id/trumpet"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_below="@id/soap"
          android:layout_margin="10dp"
          android:layout_toEndOf="@id/towel"
          android:adjustViewBounds="true"
          android:maxWidth="230dp"
          android:src="@drawable/trumpet" />
  
      <TextView
          android:id="@+id/text4"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_alignParentBottom="true"
          android:layout_centerHorizontal="true"
          android:layout_margin="20dp"
          android:text="Met les carrés dans les cases correspondantes."
          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="5dp"
          android:onClick="backHome"
          android:text="@string/home" />
  
  </RelativeLayout>