Skip to content

Instantly share code, notes, and snippets.

@the-dagger
Last active December 30, 2017 17:10
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 the-dagger/c2298ae0d31904c12f49abd44aaca10a to your computer and use it in GitHub Desktop.
Save the-dagger/c2298ae0d31904c12f49abd44aaca10a to your computer and use it in GitHub Desktop.
public void bind(final Student student) {
studentName.setText(student.getName());
studentSubject.setText(student.getBatch());
Picasso.with(itemView.getContext()).load(student.getImage()).into(studentImage);
itemView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(v.getContext(), "Student's name : " + student.getName(), Toast.LENGTH_SHORT).show();
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment