blob: 71d40e128907a4d3695816cdba124291351c4082 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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>
|