This should be a pretty simple question, what triggers the onProgressChanged() method when programming in android?
This should be a pretty simple question, what triggers the onProgressChanged() method when programming
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
ProgressBar (from android.widget package) has method
doRefreshProgress()which calls ‘onProgressChanged()’ the following way:doRefreshProgress()in turn get called then any change or set max for Progress /Secondary Progress or attached to window. Check out the source – ProgressBar and SeekBar.