diff options
| author | Martial Simon <msimon_fr@hotmail.com> | 2025-09-15 01:07:58 +0200 |
|---|---|---|
| committer | Martial Simon <msimon_fr@hotmail.com> | 2025-09-15 01:07:58 +0200 |
| commit | 967be9e750221ab2ab783f95df79bb26d290a45e (patch) | |
| tree | 6802900a5e975f9f68b169f0f503f040056d6952 /benchmark/app/src/main/res/layout/dialog_reviews_list.xml | |
Diffstat (limited to 'benchmark/app/src/main/res/layout/dialog_reviews_list.xml')
| -rw-r--r-- | benchmark/app/src/main/res/layout/dialog_reviews_list.xml | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/benchmark/app/src/main/res/layout/dialog_reviews_list.xml b/benchmark/app/src/main/res/layout/dialog_reviews_list.xml new file mode 100644 index 0000000..20f211b --- /dev/null +++ b/benchmark/app/src/main/res/layout/dialog_reviews_list.xml @@ -0,0 +1,40 @@ +<?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="wrap_content" + android:orientation="vertical" + android:padding="16dp"> + + <TextView + android:id="@+id/reviewsTitle" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:text="Avis" + android:textSize="18sp" + android:textStyle="bold" + android:layout_marginBottom="8dp" /> + + <TextView + android:id="@+id/averageRatingText" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:text="Note moyenne: 0.0/5" + android:textSize="16sp" + android:layout_marginBottom="8dp" /> + + <androidx.recyclerview.widget.RecyclerView + android:id="@+id/reviewsRecyclerView" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_marginBottom="8dp" /> + + <TextView + android:id="@+id/noReviewsText" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:text="Aucun avis pour le moment" + android:textSize="16sp" + android:textAlignment="center" + android:visibility="gone" /> + +</LinearLayout>
\ No newline at end of file |
