更改或删除 RatingBar 焦点颜色
Change or remove RatingBar focus color
我有 RatingBar 和样式。我想在 RatingBar 移除聚焦颜色。
我空的 RatingBar 的颜色:
我的 RatingBar 的聚焦颜色:
我想删除聚焦颜色:
主题:
<style name="CustomRatingBar" parent="Theme.AppCompat">
<item name="colorControlNormal">@color/lightTransparentBlack</item>
<item name="colorControlActivated">@color/yellow</item>
</style>
布局:
<RatingBar
android:id="@+id/ratingBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:theme="@style/CustomRatingBar"
android:layout_marginTop="20dp"
android:numStars="5"
android:stepSize="1" />
在 API 21 及更高版本中,您可以使用
更改填充星星的颜色
android:progressTint="@color/color"
笔画颜色
android:progressBackgroundTint="@color/color"
我有 RatingBar 和样式。我想在 RatingBar 移除聚焦颜色。
我空的 RatingBar 的颜色:
主题:
<style name="CustomRatingBar" parent="Theme.AppCompat">
<item name="colorControlNormal">@color/lightTransparentBlack</item>
<item name="colorControlActivated">@color/yellow</item>
</style>
布局:
<RatingBar
android:id="@+id/ratingBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:theme="@style/CustomRatingBar"
android:layout_marginTop="20dp"
android:numStars="5"
android:stepSize="1" />
在 API 21 及更高版本中,您可以使用
更改填充星星的颜色 android:progressTint="@color/color"
笔画颜色
android:progressBackgroundTint="@color/color"