Scrolllers

This commit is contained in:
Yohann D'ANELLO 2019-12-03 13:55:30 +01:00
parent 414078e581
commit bace5d157c
1 changed files with 164 additions and 158 deletions

View File

@ -1,10 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent"> android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout <LinearLayout
android:layout_width="match_parent" android:layout_width="match_parent"
@ -204,7 +203,6 @@
</LinearLayout> </LinearLayout>
<LinearLayout <LinearLayout
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
@ -261,8 +259,6 @@
</LinearLayout> </LinearLayout>
<LinearLayout <LinearLayout
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
@ -447,6 +443,10 @@
android:layout_weight="1" android:layout_weight="1"
android:text="Misères" /> android:text="Misères" />
<HorizontalScrollView
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TableLayout <TableLayout
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
@ -528,6 +528,11 @@
</TableRow> </TableRow>
</TableLayout> </TableLayout>
</HorizontalScrollView>
<HorizontalScrollView
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TableLayout <TableLayout
android:layout_width="match_parent" android:layout_width="match_parent"
@ -567,15 +572,15 @@
android:id="@+id/player5_points_text" android:id="@+id/player5_points_text"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:visibility="gone" android:textSize="24sp"
android:textSize="24sp" /> android:visibility="gone" />
<TextView <TextView
android:id="@+id/player6_points_text" android:id="@+id/player6_points_text"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:visibility="gone" android:textSize="24sp"
android:textSize="24sp" /> android:visibility="gone" />
</TableRow> </TableRow>
<TableRow <TableRow
@ -610,18 +615,19 @@
android:id="@+id/player5_points" android:id="@+id/player5_points"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:visibility="gone" android:textSize="24sp"
android:textSize="24sp" /> android:visibility="gone" />
<TextView <TextView
android:id="@+id/player6_points" android:id="@+id/player6_points"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:visibility="gone" android:textSize="24sp"
android:textSize="24sp" /> android:visibility="gone" />
</TableRow> </TableRow>
</TableLayout> </TableLayout>
</HorizontalScrollView>
<Button <Button
android:id="@+id/add_game_button" android:id="@+id/add_game_button"
@ -630,4 +636,4 @@
android:text="Enregistrer la partie" /> android:text="Enregistrer la partie" />
</LinearLayout> </LinearLayout>
</LinearLayout> </ScrollView>