【发布时间】:2016-12-27 20:37:41
【问题描述】:
我正在尝试使用此代码为小进度条设置自定义颜色:
<style name="RatingBar" parent="Theme.AppCompat">
<item name="colorControlNormal">@color/gold_yellow</item>
<item name="colorControlActivated">@color/light_grey</item>
</style>
<RatingBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:isIndicator="true"
android:rating="3.3"
android:theme="@style/RatingBar"
android:id="@+id/go_rating"
style="@android:style/Widget.Holo.Light.RatingBar.Small"/>
问题在于:星星很小,但它们是蓝色的。但是如果我删除style="@android:style/Widget.Holo.Light.RatingBar.Small,那么颜色会变成金黄色,但会变大。
请问如何为星星设置自定义颜色并同时使其变小?
【问题讨论】: