Android 中的评分栏

发布于 2024-11-27 05:37:17 字数 1340 浏览 0 评论 0原文

我有一个具有自定义评级栏的应用程序。其代码如下:

<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 可绘制的代码是:

<?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 颗星的正确评级栏,如下所示: 在此处输入图像描述

但在横向模式下,同样变得像 在此处输入图像描述

有人可以告诉我原因吗?如何避免此问题。 谢谢!

I have an application that has a custom Ratings bar. The code for the same is below:

<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>

The code for the ratings_bar drawable is:

<?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>

I'm able to see a proper rating bar with 3 stars in the portrait mode as below:
enter image description here

but in the landscape mode, the same becomes like
enter image description here

Can some one tell me why, and how can I circumvent this problem.
Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

作死小能手 2024-12-04 05:37:17

尝试添加

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

到您的 <评分栏>

Try adding

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

into your < RatingBar >

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文