Skip to content

Instantly share code, notes, and snippets.

@codeguru42
Created May 9, 2013 04:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codeguru42/5545537 to your computer and use it in GitHub Desktop.
Save codeguru42/5545537 to your computer and use it in GitHub Desktop.
OnTouchListeners
albumCover.setOnTouchListener(new OnTouchListener() {
public void onTouch(View v, MotionEvent event) {
// What happens when an albumCover is touched
}
});
channelName.setOnTouchListener(new OnTouchListener() {
public void onTouch(View v, MotionEvent event) {
// What happens when an channelName is touched
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment