Skip to content

Instantly share code, notes, and snippets.

@sprejjs
Created August 11, 2017 02:51
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 sprejjs/9f785d3af967e9fcba259b388e46588e to your computer and use it in GitHub Desktop.
Save sprejjs/9f785d3af967e9fcba259b388e46588e to your computer and use it in GitHub Desktop.
Step 12. Attach new OnClickListener.
holder.parentView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Intent intent = new Intent(context, DetailsActivity.class);
intent.putExtra(DetailsActivity.EXTRA_CONTACT, contact);
context.startActivity(intent);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment