I want to reduce the size of the Rating bar, I got some style properties that do it, but they are out of the reach of user interaction they are just Indicator. So, please le
I've searched through a lot of posts with the same question here and I was trying out the answer provided by @Vaibhav A. Jani, when I just stopped by a more simple solution to this question. I am not saying that @Vaibhav A. Jani answer is not correct tho.
Try this, it worked for me to see stars much smaller:
RatingBar ratingBar = new RatingBar(context, null, android.R.attr.ratingBarStyleSmall);
And also I was able to create lots of RatingBar dynamically, without touching any xml file, just java coding.
Reference