I have a View
in which I set a list using ListAdapter
. Now I want to swipe a View
using OnTouchListener
, but as soon as I touch the View
, the onItemClickListener
method gets fired.
I tried adding both OnTouchListener
and onItemClickListener
to the View
but only OnTouchListner
seems to be fired. Please help me so that I can swipe the whole View
as well as have the ability to to add items to the View
on a click.