I have two ImageViews one is full screen and in background (iv1), the other one is wrapping its contents and in foreground(iv2).
Every Imageview has it own OnTouchListener
.
When user clicks on iv1 and drags over iv2, iv2 doesn't receive touches, and I need that behaviour, I tried
android:focusableInTouchMode="true"
android:focusable="true"
android:clickable="true"
on iv2 but with no luck. can you guys help me?