Blame view

app/src/main/res/layout/tutorial1_display.xml 1.65 KB
6b23e70e   aarnaude   first commit
1
2
3
4
5
6
  <?xml version="1.0" encoding="utf-8"?>
  <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:orientation="vertical">
  
6b23e70e   aarnaude   first commit
7
8
9
10
11
      <ImageButton
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_centerInParent="true"
          android:background="?android:attr/selectableItemBackgroundBorderless"
c13d9bc3   aarnaude   activity consigne...
12
13
          android:onClick="bravoPage"
          android:src="@drawable/ballondefoot" />
6b23e70e   aarnaude   first commit
14
15
16
  
      <Button
          android:id="@+id/button_id_home"
d87c7c33   aarnaude   last commit?
17
18
19
20
21
22
23
24
25
26
          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_tut1"
6b23e70e   aarnaude   first commit
27
28
29
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_alignParentBottom="true"
d87c7c33   aarnaude   last commit?
30
31
32
33
          android:layout_margin="10dp"
          android:layout_toEndOf="@id/button_id_home"
          android:layout_toStartOf="@id/announce_instruction"
          android:gravity="center"
a5c66bd7   aarnaude   modif boutons/typ...
34
          android:textAppearance="@style/TextFont" />
6b23e70e   aarnaude   first commit
35
  
4fbbe27a   aarnaude   ajout de la fonct...
36
37
      <Button
          android:id="@+id/announce_instruction"
d87c7c33   aarnaude   last commit?
38
39
          android:layout_width="80dp"
          android:layout_height="80dp"
4fbbe27a   aarnaude   ajout de la fonct...
40
41
          android:layout_alignParentBottom="true"
          android:layout_alignParentEnd="true"
d87c7c33   aarnaude   last commit?
42
43
44
          android:layout_margin="10dp"
          android:background="@drawable/speech_icon"
          android:onClick="enonceConsigne" />
4fbbe27a   aarnaude   ajout de la fonct...
45
  
6b23e70e   aarnaude   first commit
46
  </RelativeLayout>