Début du layout

This commit is contained in:
NonoL3Robot
2022-02-22 12:19:47 +01:00
parent 1db190bbbc
commit 97927688cb
+30 -3
View File
@@ -1,6 +1,33 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent"> android:layout_height="match_parent"
android:stretchColumns="1">
</androidx.constraintlayout.widget.ConstraintLayout> <TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center"
android:text="@string/afficher_titre" />
<TableRow>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/afficher_label_plat" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/afficher_label_duree" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/afficher_label_temperature" />
</TableRow>
<ListView
android:id="@+id/listeCuisson"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</TableLayout>