1imageButton.setOnTouchListener(new OnTouchListener() {
2 @Override
3 public boolean onTouch(View v, MotionEvent event) {
4 if(event.getAction() == MotionEvent.ACTION_UP){
5
6 // Do what you want
7 return true;
8 }
9 return false;
10 }
11});
12