fix/prevent_button_spam_on_scroll_to_replied_message - and VisibleMessageViews in general (#983)
* WIP * Minor tidyup * Removed some blank lines * Fix typo * Tweaks --------- Co-authored-by: alansley <aclansley@gmail.com> Co-authored-by: ThomasSession <thomas.r@getsession.org>pull/1712/head
parent
58e142c5d2
commit
635cee1585
@ -0,0 +1,21 @@
|
||||
package org.thoughtcrime.securesms.util
|
||||
|
||||
import android.os.SystemClock
|
||||
import android.view.View
|
||||
|
||||
// Listener class that only accepts clicks at a given interval to prevent button spam.
|
||||
// Note: While this cannot be used on conversation views without interfering with motion events it may still be useful.
|
||||
class SafeClickListener(
|
||||
private var minimumClickIntervalMS: Long = 500L,
|
||||
private val onSafeClick: (View) -> Unit
|
||||
) : View.OnClickListener {
|
||||
private var lastClickTimestampMS: Long = 0L
|
||||
|
||||
override fun onClick(v: View) {
|
||||
// Ignore any follow-up clicks if the minimum interval has not passed
|
||||
if (SystemClock.elapsedRealtime() - lastClickTimestampMS < minimumClickIntervalMS) return
|
||||
|
||||
lastClickTimestampMS = SystemClock.elapsedRealtime()
|
||||
onSafeClick(v)
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue