Search code examples
androidandroid-developer-api

what is Rating class? is it useful to get rating in playstore from the app itself?


I have learnt about Rating class in android developers official docs. Here is the link:

https://developer.android.com/reference/android/media/Rating.html

i am confusd that if this class is useful for rating an app in playstore within app? or internal widget like Rating bar? please help me thanks.


Solution

  • Both are not. Rating class is just a wrapper class which can be used to keep rating information, it implements Parcelable, hence, you can pass its instances between Android components (i.e Activity, Service...).

    You can read the source code here:

    https://android.googlesource.com/platform/frameworks/base/+/cd92588/media/java/android/media/Rating.java