Android doc said
public abstract void onRatingChanged (RatingBar ratingBar, float rating, boolean fromUser)
Since: API Level 1 Notification that the rating has changed. Clients can use the fromUser parameter to distinguish user-initiated changes from those that occurred programmatically. This will not be called continuously while the user is dragging, only when the user finalizes a rating by lifting the touch.
How can I build an ratingbar that can update as user dragging through it?
I also find ratingBar is not very customziable. The way to change image is some what hack as mentioned here Are there any open sourced ones? Thanks