How to set ratingbar style from programmatically?

android, rating

Solution

This works for me (source):

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

Problem

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

Original source

Related problems