I have a list view with five rows. If user taps on a row dialog corresponding to that row will open.
But when the user taps on two rows at a time using two fingers, two poppus are being opened. Can someone please suggest how to avoid this behaviour.
Thanks.
Try setting
android:splitMotionEvents="false"
attribute of yourListView
from xml.It may disable multi touch events.