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"
|
d55d5943
aarnaude
resolution Bravo
|
5
6
7
8
|
android:focusable="true"
android:clickable="true"
android:focusableInTouchMode="true"
android:id="@+id/bravo_view"
|
6b23e70e
aarnaude
first commit
|
9
10
11
12
13
14
15
|
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
|
d55d5943
aarnaude
resolution Bravo
|
16
|
android:text="Bien joué! Touche l'écran pour continuer à jouer!"
|
6b23e70e
aarnaude
first commit
|
17
18
19
20
21
22
|
android:textStyle="bold"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
|
d55d5943
aarnaude
resolution Bravo
|
23
|
android:maxHeight="50dp"
|
6b23e70e
aarnaude
first commit
|
24
25
26
|
android:src="@drawable/bravo" />
</RelativeLayout>
|