tarot-ens-info/app/src/main/res/layout/fragment_personal_stats.xml

69 lines
2.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TableLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:stretchColumns="0,1">
<TableRow>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="18sp"
android:text="Points à 3 joueurs :"/>
<TextView
android:id="@+id/points3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="18sp" />
</TableRow>
<TableRow>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="18sp"
android:text="Points à 4 joueurs :" />
<TextView
android:id="@+id/points4"
android:layout_width="wrap_content"
android:textSize="18sp"
android:layout_height="wrap_content" />
</TableRow>
<TableRow>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="18sp"
android:text="Points à 5 joueurs :" />
<TextView
android:id="@+id/points5"
android:layout_width="wrap_content"
android:textSize="18sp"
android:layout_height="wrap_content" />
</TableRow>
<TableRow>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="18sp"
android:text="Points à 6 joueurs :" />
<TextView
android:id="@+id/points6"
android:layout_width="wrap_content"
android:textSize="18sp"
android:layout_height="wrap_content" />
</TableRow>
</TableLayout>
</LinearLayout>