summaryrefslogtreecommitdiff
path: root/benchmark/app/src/main/res/layout/item_review.xml
diff options
context:
space:
mode:
authorMartial Simon <msimon_fr@hotmail.com>2025-09-15 01:07:58 +0200
committerMartial Simon <msimon_fr@hotmail.com>2025-09-15 01:07:58 +0200
commit967be9e750221ab2ab783f95df79bb26d290a45e (patch)
tree6802900a5e975f9f68b169f0f503f040056d6952 /benchmark/app/src/main/res/layout/item_review.xml
add: added projectsHEADmain
Diffstat (limited to 'benchmark/app/src/main/res/layout/item_review.xml')
-rw-r--r--benchmark/app/src/main/res/layout/item_review.xml26
1 files changed, 26 insertions, 0 deletions
diff --git a/benchmark/app/src/main/res/layout/item_review.xml b/benchmark/app/src/main/res/layout/item_review.xml
new file mode 100644
index 0000000..71d40e1
--- /dev/null
+++ b/benchmark/app/src/main/res/layout/item_review.xml
@@ -0,0 +1,26 @@
+<?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="8dp"
+ android:layout_marginBottom="8dp"
+ android:background="#F5F5F5">
+
+ <RatingBar
+ android:id="@+id/itemRatingBar"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:isIndicator="true"
+ style="?android:attr/ratingBarStyleSmall"
+ android:numStars="5"
+ android:stepSize="1.0"
+ android:layout_marginBottom="4dp" />
+
+ <TextView
+ android:id="@+id/itemCommentText"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:textSize="14sp" />
+
+</LinearLayout> \ No newline at end of file