|
|
@ -4,28 +4,42 @@
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:orientation="vertical"
|
|
|
|
tools:context=".MainActivity">
|
|
|
|
tools:context=".MainActivity"
|
|
|
|
|
|
|
|
android:gravity="center">
|
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/textTitle"
|
|
|
|
android:id="@+id/background_image"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_width="165dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_height="138dp"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:layout_marginTop="24dp"
|
|
|
|
android:layout_marginTop="30dp"
|
|
|
|
android:text="@string/app_name"
|
|
|
|
android:contentDescription="@string/app_name"
|
|
|
|
android:textSize="34sp" />
|
|
|
|
android:scaleType="centerCrop"
|
|
|
|
|
|
|
|
android:src="@drawable/logo" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
<Button
|
|
|
|
android:id="@+id/btnSolo"
|
|
|
|
android:id="@+id/btnSolo"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_width="370dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_height="90dp"
|
|
|
|
android:layout_marginTop="16dp"
|
|
|
|
android:layout_marginTop="40dp"
|
|
|
|
|
|
|
|
android:backgroundTint="@color/green"
|
|
|
|
android:text="@string/solo" />
|
|
|
|
android:text="@string/solo" />
|
|
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
<Button
|
|
|
|
android:id="@+id/btnMulti"
|
|
|
|
android:id="@+id/btnMulti"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_width="370dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_height="90dp"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_marginTop="30dp"
|
|
|
|
|
|
|
|
android:backgroundTint="@color/orange"
|
|
|
|
android:text="@string/multiplayer" />
|
|
|
|
android:text="@string/multiplayer" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
|
|
|
android:id="@+id/btnConnexion"
|
|
|
|
|
|
|
|
android:layout_width="200dp"
|
|
|
|
|
|
|
|
android:layout_height="60dp"
|
|
|
|
|
|
|
|
android:layout_marginTop="50dp"
|
|
|
|
|
|
|
|
android:backgroundTint="@color/grey"
|
|
|
|
|
|
|
|
android:text="@string/connexion" />
|
|
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|