modif affichage client

This commit is contained in:
maissane 2025-05-04 11:22:32 +02:00
parent f1aa4e5c90
commit 169ada12e2

View File

@ -1,58 +1,52 @@
<?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" <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="wrap_content"
xmlns:app="http://schemas.android.com/apk/res-auto"> android:orientation="horizontal"
android:padding="4dp">
<LinearLayout <TextView
android:layout_width="match_parent" android:id="@+id/tvNomP2_2"
android:layout_width="0dp"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:orientation="horizontal" android:layout_weight="1"
app:layout_constraintEnd_toEndOf="parent" android:text="Nom"
app:layout_constraintStart_toStartOf="parent" android:ellipsize="end"
app:layout_constraintTop_toTopOf="parent"> android:maxLines="1" />
<!-- <LinearLayout--> <TextView
<!-- android:layout_width="409dp"--> android:id="@+id/tvPrenomP2_2"
<!-- android:layout_height="729dp"--> android:layout_width="0dp"
<!-- android:orientation="horizontal" --> android:layout_height="wrap_content"
<!-- tools:layout_editor_absoluteX="1dp"--> android:layout_weight="1"
<!-- tools:layout_editor_absoluteY="1dp">--> android:text="Prénom"
android:ellipsize="end"
android:maxLines="1" />
<TextView <TextView
android:id="@+id/tvNomP2.2" android:id="@+id/tvMelP2_2"
android:layout_width="wrap_content" android:layout_width="0dp"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_weight="1" android:layout_weight="1"
android:text="@string/listeNom" /> android:text="Mail"
android:ellipsize="end"
android:maxLines="1" />
<TextView <TextView
android:id="@+id/tvPrenomP2.2" android:id="@+id/tvNumP2_2"
android:layout_width="wrap_content" android:layout_width="0dp"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_weight="1" android:layout_weight="1"
android:text="@string/listePrenom" /> android:text="Numéro"
android:ellipsize="end"
android:maxLines="1" />
<TextView <TextView
android:id="@+id/tvMelP2.2" android:id="@+id/tvAdP2_2"
android:layout_width="wrap_content" android:layout_width="0dp"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_weight="1" android:layout_weight="1"
android:text="@string/listeMel" /> android:text="Adresse"
android:ellipsize="end"
<TextView android:maxLines="1" />
android:id="@+id/tvNumP2.2" </LinearLayout>
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/listeNum" />
<TextView
android:id="@+id/tvAdP2.2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/listeAd" />
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>