summaryrefslogtreecommitdiff
path: root/benchmark/app/src/main/res/layout/dialog_review.xml
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/app/src/main/res/layout/dialog_review.xml')
-rw-r--r--benchmark/app/src/main/res/layout/dialog_review.xml40
1 files changed, 40 insertions, 0 deletions
diff --git a/benchmark/app/src/main/res/layout/dialog_review.xml b/benchmark/app/src/main/res/layout/dialog_review.xml
new file mode 100644
index 0000000..c43f746
--- /dev/null
+++ b/benchmark/app/src/main/res/layout/dialog_review.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:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:text="Note:"
+ android:textSize="16sp"
+ android:layout_marginBottom="8dp" />
+
+ <RatingBar
+ android:id="@+id/ratingBar"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center_horizontal"
+ android:numStars="5"
+ android:stepSize="1.0"
+ android:layout_marginBottom="16dp" />
+
+ <TextView
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:text="Commentaire (optionnel):"
+ android:textSize="16sp"
+ android:layout_marginBottom="8dp" />
+
+ <EditText
+ android:id="@+id/commentEditText"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:hint="Entrez votre commentaire ici"
+ android:inputType="textMultiLine"
+ android:minLines="3"
+ android:gravity="top|start" />
+
+</LinearLayout> \ No newline at end of file