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
I need Progress change listner null and i do this using onprogress change = null but when i do this my progress will be fill when i progress to 100 so i found the solution for that you need to remove progress = getProgress(event) from private fun updateProgress(event: MotionEvent) {
You need to update it like -
private fun updateProgress(event: MotionEvent) {
onProgressChanged?.onProgressChanged(this, getProgress(event), true)
}
Thanks me later 😊
The text was updated successfully, but these errors were encountered:
I need Progress change listner null and i do this using onprogress change = null but when i do this my progress will be fill when i progress to 100 so i found the solution for that you need to remove progress = getProgress(event) from private fun updateProgress(event: MotionEvent) {
You need to update it like -
private fun updateProgress(event: MotionEvent) {
onProgressChanged?.onProgressChanged(this, getProgress(event), true)
}
Thanks me later 😊
The text was updated successfully, but these errors were encountered: