我正在使用android studio。我需要缩小等级栏。 我尝试使用此样式:style =“?android:attr / ratingBarStyleSmall” 但这不起作用
<RatingBar
android:id="@+id/ratingBar"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_gravity="right"
android:layout_weight="1.5"
style="?android:attr/ratingBarStyleSmall"
android:numStars="5" />
答案 0 :(得分:1)
如果您想像这样减小评分栏的大小,可以使用scaleX
和scaleY
:
<RatingBar
android:id="@+id/ratingBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:scaleX="0.5"
android:scaleY="0.5"
/>