2026-03-11 15:52:10 +01:00
|
|
|
<?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"
|
|
|
|
|
android:padding="48dp">
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="Options"
|
|
|
|
|
android:textSize="32sp"
|
|
|
|
|
android:textStyle="bold"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:layout_marginBottom="64dp"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
android:gravity="center_vertical">
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:text="Hard mode (verrous)"
|
|
|
|
|
android:textSize="18sp"/>
|
|
|
|
|
|
2026-03-20 00:40:05 +01:00
|
|
|
<CheckBox
|
|
|
|
|
android:id="@+id/checkHard"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:scaleX="1.5"
|
|
|
|
|
android:scaleY="1.5"
|
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
|
android:minWidth="48dp"
|
|
|
|
|
android:minHeight="48dp"/>
|
2026-03-11 15:52:10 +01:00
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
2026-03-20 00:40:05 +01:00
|
|
|
<Button
|
|
|
|
|
android:id="@+id/btnBack"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:text="Retour"
|
|
|
|
|
android:layout_marginTop="32dp">
|
|
|
|
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|