Search code examples
androidrating

How to set ratingbar style from programmatically?


I don't see any method like setStyle for class RatingBar. How can I set the rating style from code?


Solution

  • This works for me (source):

    RatingBar rating =
      new RatingBar(context, null, android.R.attr.ratingBarStyleSmall);