I'm creating an imageview in Android and try to make it movable by user's fingers.
I need to handle 2 events, one is when I want to move the ImageView and the other is to long click on it.
However, I'm facing an issue that when I'm moving the ImageView, my finger is always on the screen. It also means that setOnClickListener() will be called. Therefore, I cannot do my will on setOnClickListener while moving the object.
I would like to have your suggestion and consult. If possible, I would specially appreciate you.