OnLongClickListener
OnLongClickListener is an interface in the Android framework that is used to handle long click events on a view. A long click event is triggered when a user presses and holds down on a view for a certain period of time, typically longer than a regular click. This interface is part of the Android View system and is used to define a callback method that will be invoked when the long click event occurs.
The OnLongClickListener interface contains a single method, onLongClick(View v), which is called when a long click
To use OnLongClickListener, you need to implement the interface in your activity or fragment and override the