Problem in reducing size of Rating Bar.

前端 未结 4 1754
醉梦人生
醉梦人生 2020-12-25 08:50

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

4条回答
  •  天涯浪人
    2020-12-25 09:06

    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

提交回复
热议问题