Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

onCompltion Listener added #58

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
flag added for onComplete
  • Loading branch information
MudssirAhmed committed Feb 8, 2023
commit 64d0edfdeb9dc3298945073b9357dacb5074812e
6 changes: 5 additions & 1 deletion lib/src/main/java/com/masoudss/lib/WaveformSeekBar.kt
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ open class WaveformSeekBar @JvmOverloads constructor(
private var mAlreadyMoved = false
private lateinit var progressBitmap: Bitmap
private lateinit var progressShader: Shader
private var mOnCompleteCalled = false

var onProgressChanged: SeekBarOnProgressChanged? = null
var onCompletionListener: DrawCompletionListener? = null
Expand Down Expand Up @@ -369,7 +370,10 @@ open class WaveformSeekBar @JvmOverloads constructor(
canvas.rotate(-90f)
}

onCompletionListener?.onDrawComplete()
if(!mOnCompleteCalled) {
mOnCompleteCalled = true
onCompletionListener?.onDrawComplete()
}
}
}

Expand Down