Search code examples
javaandroidandroid-layoutkotlinratingbar

How to remove padding from Rating Bar in Android?


i have rating bar on my application and it appears like this:

enter image description here

I've tried to set padding to 0dp, but nothing changed to the view.

 <RatingBar
      android:id="@+id/ratingBar"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:numStars="5"
      android:layout_marginStart="16dp"
      android:isIndicator="false"
      style="@style/Widget.AppCompat.RatingBar"/>

Expected result: I am expecting the rating bar with no right padding and bottom padding.


Solution

  • I add this to my xml code and it solved my problems:

    android:scaleX="1"
    android:scaleY="1"