我只想在RatingBar
中拥有一颗TableRow
5颗星,但它总是出现8颗星。
但我已经使用android:numStars="5"
来通知它。
此外,它使用android:rating="4"
填充7.5星而不是4星
无论我改变什么,对布局毫无意义。
我的XML如下:
<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/drop_shadow"
android:orientation="vertical"
>
<TableRow
android:id="@+id/image_row"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:padding="5dp" >
<ImageView
android:id="@+id/grid_image"
android:layout_width="130dp"
android:layout_height="130dp" />
</TableRow>
<TableRow
android:id="@+id/text_row"
android:layout_width="wrap_content"
android:layout_height="70dp"
>
<TextView
android:id="@+id/grid_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:maxWidth="140dp"
android:text="Summary" />
</TableRow>
<TableRow
android:id="@+id/rate_row"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<RatingBar
android:id="@+id/product_rating"
style="?android:attr/ratingBarStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:isIndicator="true"
android:max="5"
android:numStars="5"
android:rating="4"
android:stepSize="1" />
</TableRow>
</TableLayout>
答案 0 :(得分:2)
在这里,您使用表格行内的评级栏。根据参考文献,tablerow的孩子将匹配父母作为他们的宽度。因此,您可以在此表格行中嵌套水平线性布局,然后按如下方式嵌入评级栏:
<TableRow
android:id="@+id/rate_row"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<RatingBar
android:id="@+id/product_rating"
style="?android:attr/ratingBarStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:isIndicator="true"
android:max="5"
android:numStars="5"
android:rating="4"
android:stepSize="1" />
</LinearLayout>
</TableRow>
答案 1 :(得分:0)
style="?android:attr/ratingBarStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:isIndicator="true"
android:numStars="5"
android:stepSize="1.0" />