You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 24, 2022. It is now read-only.
I really like your lib but there is a problem that made me switch to another lib for now and that's When the progress is used in a listview or recyclerview row with holder pattern, when the view is reused the progress has its old value till the next update arrives ( from upload/download service for example). although I disable animation and setprogress to 0 at initial it, its not fast enough and it would be visible for a second to the user. the list view patter is like below:
if(view == null)
init ...
else
{
holder = ...
}
if(isDownloading)
{
setProgres(0) // set progress to 0 if it's the first time
setProgress()
}
else
{
setProgress(0)
hideProgressView()
}
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I really like your lib but there is a problem that made me switch to another lib for now and that's When the progress is used in a listview or recyclerview row with holder pattern, when the view is reused the progress has its old value till the next update arrives ( from upload/download service for example). although I disable animation and setprogress to 0 at initial it, its not fast enough and it would be visible for a second to the user. the list view patter is like below:
The text was updated successfully, but these errors were encountered: