I have a RatingBar
where a user can submit a star number. I don't have a button with it, I want to make it more user friendly and let it submit dynamically.
In the setOnRatingBarChangeListener
method, I submit the stars.
Here is quesiton
I'd like to put maybe a 1 second delay before submission, and if the user changes to a different star, reset the timer.
I'm trying to prevent multiple database submissions (or at least limit them).
Is this possible? and how can this be written?