Blame view

app/src/main/res/layout/activity_main.xml 1.81 KB
6b23e70e   aarnaude   first commit
1
2
3
4
  <?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"
a5c66bd7   aarnaude   modif boutons/typ...
5
6
7
8
9
10
11
12
13
      android:background="@color/colorPrimary">
  
      <ImageView
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_centerInParent="true"
          android:adjustViewBounds="true"
          android:maxWidth="580dp"
          android:src="@drawable/noa_bravo" />
6b23e70e   aarnaude   first commit
14
15
16
17
18
19
  
      <Button
          android:id="@+id/button_id_play"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_alignParentStart="true"
a5c66bd7   aarnaude   modif boutons/typ...
20
21
          android:layout_marginStart="130dp"
          android:layout_marginTop="160dp"
6b23e70e   aarnaude   first commit
22
          android:onClick="themePage"
d87c7c33   aarnaude   last commit?
23
          android:padding="50dp"
a5c66bd7   aarnaude   modif boutons/typ...
24
          android:text="@string/play"
d87c7c33   aarnaude   last commit?
25
          android:textAppearance="@style/TextButtonFont" />
6b23e70e   aarnaude   first commit
26
27
28
29
30
31
32
33
  
      <Button
          android:id="@+id/button_id_tutorial"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_alignBaseline="@+id/button_id_play"
          android:layout_alignBottom="@+id/button_id_play"
          android:layout_alignParentEnd="true"
a5c66bd7   aarnaude   modif boutons/typ...
34
          android:layout_marginEnd="130dp"
6b23e70e   aarnaude   first commit
35
          android:onClick="tutorialPage"
d87c7c33   aarnaude   last commit?
36
          android:padding="50dp"
a5c66bd7   aarnaude   modif boutons/typ...
37
          android:text="@string/tutorial"
d87c7c33   aarnaude   last commit?
38
          android:textAppearance="@style/TextButtonFont" />
6b23e70e   aarnaude   first commit
39
40
41
42
43
  
      <Button
          android:id="@+id/button_id_configure"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
6b23e70e   aarnaude   first commit
44
          android:layout_alignParentBottom="true"
a5c66bd7   aarnaude   modif boutons/typ...
45
          android:layout_margin="20dp"
6b23e70e   aarnaude   first commit
46
          android:onClick="configurePage"
a5c66bd7   aarnaude   modif boutons/typ...
47
          android:text="@string/configure"
d87c7c33   aarnaude   last commit?
48
          android:textAppearance="@style/TextButtonFont" />
6b23e70e   aarnaude   first commit
49
50
  
  </RelativeLayout>