其他分享
首页 > 其他分享> > android-RatingBar在不同设备上的色差

android-RatingBar在不同设备上的色差

作者:互联网

我有一个RatingBar

        <android.support.v7.widget.AppCompatRatingBar
            android:id="@+id/rating"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:isIndicator="false"
            android:numStars="5"
            android:rating="0.0"
            android:stepSize="1.0"
            android:theme="@style/RatingBar"/>

和风格:

<style name="RatingBar" parent="Theme.AppCompat">
    <item name="colorControlNormal">@color/old_gray</item>
    <item name="colorControlActivated">@color/yellow</item>
</style>

问题在于这种样式由于某些原因而被忽略:

Nexus 5x API 24:
enter image description here

三星S4 API 21:

enter image description here

我的活动是FragmentActivity的扩展,也许问题在这里?怎么修?

解决方法:

从API 21开始,您只需从xml进行更改

android:progressTint="@android:color/holo_red_dark"
android:progressBackgroundTint="@android:color/holo_red_dark"
android:secondaryProgressTint="@android:color/holo_red_dark" 

标签:ratingbar,xml,android
来源: https://codeday.me/bug/20191118/2025495.html