I have a horizontal LinearLayout and a couple of ImageViews in it.
I would like to swipe my finger through these ImageViews and receive a callback every time my finger enters and leaves each ImageView.
I tried various combinations of onTouchListener, onHoverListener, onGenericMotionListener but it seems that the ImageView that has been pressed initially "eats" these actions.
If it does matter my view structure is as simple as following:
ActionBar has a custom view: HorizontallScrollView -> LinearLayout -> ImageViews.
Any ideas?