Blame view

app/src/main/res/layout/activity_age3.xml 2.7 KB
af6964e6   Edmur LOPES   create new git
1
  <?xml version="1.0" encoding="utf-8"?>
cff05a09   rcavalie   Tout marche
2
3
  <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
      android:layout_width="fill_parent"
4a09720e   rcavalie   finalisation du p...
4
      android:layout_height="wrap_content" >
af6964e6   Edmur LOPES   create new git
5
6
7
8
9
10
11
12
13
14
15
16
17
  
  <LinearLayout
      xmlns:android="http://schemas.android.com/apk/res/android"
      xmlns:app="http://schemas.android.com/apk/res-auto"
      android:orientation="vertical"
      android:layout_width="fill_parent"
      android:layout_height="fill_parent"
      android:weightSum="1"
      android:background="@color/colorPrimaryDark">
  
      <ImageButton
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
4a09720e   rcavalie   finalisation du p...
18
          app:srcCompat="@drawable/kode"
af6964e6   Edmur LOPES   create new git
19
20
21
22
23
24
          android:id="@+id/mode_aventure"
          android:layout_gravity="center"
          android:backgroundTint="@color/colorPrimaryDark"
          android:layout_marginTop="100dp" />
  
      <TextView
4a09720e   rcavalie   finalisation du p...
25
          android:text="Mode aventure"
af6964e6   Edmur LOPES   create new git
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:id="@+id/textView"
          android:textAppearance="@style/TextAppearance.AppCompat.Display1"
          android:textColor="?android:attr/windowBackground"
          android:layout_marginLeft="20dp" />
  
      <TextView
          android:text="Flashe les codes QR qui t'entourent pour en savoir plus sur le SSR Marc Sautelet. Démarre le scan en appuyant sur le code ci-dessus."
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:id="@+id/textView2"
          android:textColor="?android:attr/windowBackground"
          android:layout_marginLeft="20dp"
          android:layout_marginRight="20dp" />
  
4a09720e   rcavalie   finalisation du p...
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
      <ImageButton
          android:id="@+id/jeu"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_gravity="center"
          android:layout_marginTop="50dp"
          android:layout_weight="0.09"
          app:srcCompat="@drawable/game" />
  
      <TextView
          android:text="Jeu de plateforme"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:id="@+id/descrip"
          android:textAppearance="@style/TextAppearance.AppCompat.Display1"
          android:textColor="?android:attr/windowBackground"
          android:layout_marginLeft="20dp"/>
  
      <TextView
          android:text="Dans ce jeu, tu vas pouvoir contrôler un robot un peu spécial. Le but est d'aller le plus loin possible dans l'aventure.
  \n
  \n
  \n
  \n
  \n"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:id="@+id/textView7"
          android:textColor="?android:attr/windowBackground"
          android:layout_marginLeft="20dp"
          android:layout_marginRight="20dp"/>
  
cff05a09   rcavalie   Tout marche
74
75
  </LinearLayout>
  </ScrollView>