|
|
|
@ -2,30 +2,46 @@
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
tools:context=".MultiActivity">
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
android:id="@+id/btnReturn"
|
|
|
|
|
android:layout_width="200dp"
|
|
|
|
|
android:layout_width="100dp"
|
|
|
|
|
android:layout_height="60dp"
|
|
|
|
|
android:layout_marginTop="50dp"
|
|
|
|
|
android:layout_marginTop="15dp"
|
|
|
|
|
android:layout_marginStart="20dp"
|
|
|
|
|
android:backgroundTint="@color/grey"
|
|
|
|
|
android:layout_gravity="start"
|
|
|
|
|
android:text="@string/retour" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="50dp"
|
|
|
|
|
android:fontFamily="@font/math_educ_font"
|
|
|
|
|
android:layout_marginTop="30dp"
|
|
|
|
|
android:layout_marginStart="20dp"
|
|
|
|
|
android:text="@string/listLobbies"
|
|
|
|
|
android:textColor="@color/white"
|
|
|
|
|
android:textSize="40sp" />
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
android:id="@+id/btnAddLobby"
|
|
|
|
|
android:layout_width="200dp"
|
|
|
|
|
android:layout_width="140dp"
|
|
|
|
|
android:layout_height="60dp"
|
|
|
|
|
android:layout_marginTop="50dp"
|
|
|
|
|
android:layout_marginTop="5dp"
|
|
|
|
|
android:backgroundTint="@color/blue"
|
|
|
|
|
android:layout_gravity="end"
|
|
|
|
|
android:layout_marginEnd="15dp"
|
|
|
|
|
android:text="@string/addLobby" />
|
|
|
|
|
|
|
|
|
|
<include layout="@layout/header_list_lobby" />
|
|
|
|
|
|
|
|
|
|
<ListView
|
|
|
|
|
android:id="@+id/listView"
|
|
|
|
|
android:background="@color/white"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"/>
|
|
|
|
|
android:layout_height="524dp"
|
|
|
|
|
android:background="@color/white" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
</LinearLayout>
|
|
|
|
|