-1

I have six Image View in horizontal when I swipe my finger on them no item press? I want to these all buttons pressed when I swipe my finger on them and perform their click functionality like piano and guitar. When we swipe finger on screen all piano button pressed one by one.

Shahryar Aziz
  • 33
  • 1
  • 1
  • 7

1 Answers1

0

I assume that you want to invoke click for all items when any one of these is swiped. You can implement touchlistener on parent (i.e. onTouch(View v, MotionEvent event)), listen for ACTION_UP and invoke which ever code you want to execute here.