Blame view

app/src/main/res/layout/food1_display.xml 4.94 KB
a5c66bd7   aarnaude   modif boutons/typ...
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/food1"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:orientation="vertical">
  
d87c7c33   aarnaude   last commit?
8
9
10
11
      <ImageView
          android:id="@+id/sugar"
          android:layout_width="230dp"
          android:layout_height="wrap_content"
a5c66bd7   aarnaude   modif boutons/typ...
12
          android:layout_alignParentEnd="true"
d87c7c33   aarnaude   last commit?
13
14
15
16
          android:layout_alignParentTop="true"
          android:layout_margin="10dp"
          android:adjustViewBounds="true"
          android:src="@drawable/sugar" />
a5c66bd7   aarnaude   modif boutons/typ...
17
  
d87c7c33   aarnaude   last commit?
18
19
20
21
22
23
24
25
26
      <ImageView
          android:id="@+id/salt"
          android:layout_width="230dp"
          android:layout_height="wrap_content"
          android:layout_above="@id/announce_instruction"
          android:layout_alignParentEnd="true"
          android:layout_margin="10dp"
          android:adjustViewBounds="true"
          android:src="@drawable/salt" />
a5c66bd7   aarnaude   modif boutons/typ...
27
28
29
30
31
32
33
  
      <ImageView
          android:id="@+id/bacon"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_alignParentStart="true"
          android:layout_alignParentTop="true"
d87c7c33   aarnaude   last commit?
34
          android:layout_margin="10dp"
a5c66bd7   aarnaude   modif boutons/typ...
35
36
37
38
39
40
41
42
43
          android:adjustViewBounds="true"
          android:maxWidth="200dp"
          android:src="@drawable/bacon" />
  
      <ImageView
          android:id="@+id/apple"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_alignParentTop="true"
d87c7c33   aarnaude   last commit?
44
          android:layout_margin="10dp"
a5c66bd7   aarnaude   modif boutons/typ...
45
46
47
48
49
50
51
52
53
54
          android:layout_toEndOf="@id/bacon"
          android:adjustViewBounds="true"
          android:maxWidth="190dp"
          android:src="@drawable/apple" />
  
      <ImageView
          android:id="@+id/cake"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_alignParentTop="true"
d87c7c33   aarnaude   last commit?
55
          android:layout_margin="10dp"
a5c66bd7   aarnaude   modif boutons/typ...
56
57
58
59
60
61
62
63
64
          android:layout_toEndOf="@id/apple"
          android:adjustViewBounds="true"
          android:maxWidth="190dp"
          android:src="@drawable/cake" />
  
      <ImageView
          android:id="@+id/hot_dog"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
d87c7c33   aarnaude   last commit?
65
66
67
          android:layout_alignParentStart="true"
          android:layout_below="@id/cheese"
          android:layout_margin="10dp"
a5c66bd7   aarnaude   modif boutons/typ...
68
69
70
71
72
73
74
75
          android:adjustViewBounds="true"
          android:maxWidth="200dp"
          android:src="@drawable/hot_dog" />
  
      <ImageView
          android:id="@+id/cheese"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
a5c66bd7   aarnaude   modif boutons/typ...
76
          android:layout_alignParentStart="true"
d87c7c33   aarnaude   last commit?
77
78
          android:layout_below="@id/bacon"
          android:layout_margin="10dp"
a5c66bd7   aarnaude   modif boutons/typ...
79
80
81
82
83
84
85
86
          android:adjustViewBounds="true"
          android:maxWidth="200dp"
          android:src="@drawable/cheese" />
  
      <ImageView
          android:id="@+id/muskmelon"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
d87c7c33   aarnaude   last commit?
87
88
          android:layout_below="@id/apple"
          android:layout_margin="10dp"
a5c66bd7   aarnaude   modif boutons/typ...
89
90
91
92
93
94
95
96
97
          android:layout_toEndOf="@id/cheese"
          android:adjustViewBounds="true"
          android:maxWidth="200dp"
          android:src="@drawable/muskmelon" />
  
      <ImageView
          android:id="@+id/fries"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
d87c7c33   aarnaude   last commit?
98
99
          android:layout_below="@id/cake"
          android:layout_margin="10dp"
a5c66bd7   aarnaude   modif boutons/typ...
100
101
102
103
104
105
106
107
108
          android:layout_toEndOf="@id/muskmelon"
          android:adjustViewBounds="true"
          android:maxWidth="180dp"
          android:src="@drawable/fries" />
  
      <ImageView
          android:id="@+id/muffin"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
d87c7c33   aarnaude   last commit?
109
110
111
          android:layout_below="@id/muskmelon"
          android:layout_margin="10dp"
          android:layout_toEndOf="@id/hot_dog"
a5c66bd7   aarnaude   modif boutons/typ...
112
113
114
115
          android:adjustViewBounds="true"
          android:maxWidth="200dp"
          android:src="@drawable/muffin" />
  
d87c7c33   aarnaude   last commit?
116
117
118
119
120
121
122
123
124
125
126
127
      <Button
          android:id="@+id/button_id_home"
          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_food1"
a5c66bd7   aarnaude   modif boutons/typ...
128
129
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
d87c7c33   aarnaude   last commit?
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
          android:layout_alignParentBottom="true"
          android:layout_margin="10dp"
          android:layout_toEndOf="@id/button_id_home"
          android:layout_toStartOf="@id/announce_instruction"
          android:gravity="center"
          android:textAppearance="@style/TextFont" />
  
      <Button
          android:id="@+id/announce_instruction"
          android:layout_width="80dp"
          android:layout_height="80dp"
          android:layout_alignParentBottom="true"
          android:layout_alignParentEnd="true"
          android:layout_margin="10dp"
          android:onClick="enonceConsigne" />
a5c66bd7   aarnaude   modif boutons/typ...
145
146
  
  </RelativeLayout>