The Android Click Events Library is a Kotlin-based library that simplifies the detection of various click events in Android applications. It provides a straightforward interface to detect single clicks, double clicks, hold start, hold end, and onHolding events.
-
Single Click Detection: Easily identify single click events on UI elements.
-
Double Click Detection: Detect double clicks with customizable time thresholds.
-
Hold Start and Hold End Detection: Identify when a user starts holding down on a view and when they release it.
-
OnHolding Event: Receive periodic callbacks while the user is holding down on a view.
Add the following to your module-level build.gradle
file:
dependencies {
implementation 'com.github.arpitbandil:Multi-Functional_Button:v1.0.0'
}
Make sure you have JitPack repository added in your build.gradle:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
<dependency>
<groupId>com.github.arpitbandil</groupId>
<artifactId>Multi-Functional_Button</artifactId>
<version>v1.0.0</version>
</dependency>
view.setMultiFunctionalTouchListener(object :
MultiFunctionalTouchListener.EventListener {
override fun onDoubleClick(v: View?) {
//ToDo
}
override fun onHoldEnd(v: View?) {
//ToDo
}
override fun onHoldStart(v: View?) {
//ToDo
}
override fun onHolding(v: View?) {
//ToDo
}
override fun onSingleClick(v: View?) {
//ToDo
}
})
This library is licensed under the MIT License - see the LICENSE file for details. This README provides a concise yet comprehensive guide for users to understand, install, and use your library effectively.