79121569

Date: 2024-10-24 10:59:13
Score: 0.5
Natty:
Report link

You can detect Long press by using below code

override fun onAccessibilityEvent(event: AccessibilityEvent?) {
    if (event?.eventType == AccessibilityEvent.TYPE_VIEW_LONG_CLICK) {
        // LongPress Detected here
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Bhargav Ghodasara