1.布局文件中
<RatingBar
android:layout_marginLeft="@dimen/app_margin_top"
style="@style/Base.Widget.AppCompat.RatingBar.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:max="5"
android:progress="2"
android:progressTint="@color/event6"
android:theme="@style/RatingBar_CustomColor"
/>
2.style.xml中创建style
<!--自定义RatingBar Color-->
<style name="RatingBar_CustomColor" parent="@android:style/Widget.Holo.RatingBar.Indicator">
<!--Background Color-->
<item name="colorControlNormal">#D7D7D7</item>
<!--Progress Color-->
<item name="colorControlActivated">#F49800</item>
</style>