android中的评分栏

时间:2011-07-30 07:09:00

标签: android progress-bar

我的应用程序有自定义评级栏。相同的代码如下:

<LinearLayout style="@style/FillWrap.LL.Footer"
        android:layout_width="fill_parent" android:weightSum="1">
        <ImageView android:id="@+id/IV_Prev" android:src="@drawable/left_arrow"
            style="@style/Wrap" android:layout_weight="0.35" />
        <RatingBar android:id="@+id/RB_Stars" style="@style/Wrap"
            android:progressDrawable="@drawable/ratings_bar" android:numStars="3"
            android:layout_weight="0.3" android:stepSize="1" />
        <ImageView android:id="@+id/IV_Next" android:src="@drawable/right_arrow"
            style="@style/Wrap" android:layout_weight="0.35" />
</LinearLayout>

ratings_bar drawable的代码是:

<?xml version="1.0" encoding="UTF-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
  <item android:id="@android:id/background" android:drawable="@drawable/ic_swipe_fav_off_default"/>
  <item android:id="@android:id/progress" android:drawable="@drawable/ic_swipe_fav_focused" />
</layer-list>

我可以在肖像模式中看到3星级的正确评级栏,如下所示: enter image description here

但在横向模式下,同样如此 enter image description here

有人可以告诉我为什么,以及如何规避这个问题。 谢谢!

1 个答案:

答案 0 :(得分:0)

尝试添加

    android:layout_width="wrap_content"
    android:layout_height="wrap_content"

进入你的&lt; RatingBar&gt;