summaryrefslogtreecommitdiff
path: root/benchmark/app/src/main/res/layout/item_review.xml
diff options
context:
space:
mode:
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