|
|
|
@ -4,41 +4,50 @@
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:weightSum="10"
|
|
|
|
|
tools:context=".MainActivity"
|
|
|
|
|
android:gravity="center">
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/background_image"
|
|
|
|
|
android:layout_width="165dp"
|
|
|
|
|
android:layout_height="138dp"
|
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
|
android:layout_marginTop="30dp"
|
|
|
|
|
android:contentDescription="@string/app_name"
|
|
|
|
|
android:scaleType="centerCrop"
|
|
|
|
|
android:src="@drawable/logo" />
|
|
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_weight="1">
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/background_image"
|
|
|
|
|
android:layout_width="160dp"
|
|
|
|
|
android:layout_height="130dp"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:contentDescription="@string/app_name"
|
|
|
|
|
android:scaleType="centerCrop"
|
|
|
|
|
android:src="@drawable/logo" />
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
android:id="@+id/btnSolo"
|
|
|
|
|
android:layout_width="370dp"
|
|
|
|
|
android:layout_height="90dp"
|
|
|
|
|
android:layout_marginTop="40dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_weight="0.25"
|
|
|
|
|
android:backgroundTint="@color/green"
|
|
|
|
|
android:text="@string/solo" />
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
android:id="@+id/btnMulti"
|
|
|
|
|
android:layout_width="370dp"
|
|
|
|
|
android:layout_height="90dp"
|
|
|
|
|
android:layout_marginTop="30dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_weight="0.25"
|
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
|
android:backgroundTint="@color/orange"
|
|
|
|
|
android:text="@string/multiplayer" />
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
android:id="@+id/btnConnexion"
|
|
|
|
|
android:layout_width="200dp"
|
|
|
|
|
android:layout_height="60dp"
|
|
|
|
|
android:layout_marginTop="50dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_weight="0.25"
|
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
|
android:backgroundTint="@color/grey"
|
|
|
|
|
android:text="@string/connexion" />
|
|
|
|
|
|
|
|
|
|