Skip to content

Instantly share code, notes, and snippets.

@nathanjones
Created April 26, 2016 15:58
Show Gist options
  • Save nathanjones/cb36011b242a6c0eb8381355ee4fdf76 to your computer and use it in GitHub Desktop.
Save nathanjones/cb36011b242a6c0eb8381355ee4fdf76 to your computer and use it in GitHub Desktop.
public class MessageAdapter extends RecyclerView.Adapter<MessageAdapter.MessageViewHolder> {
// ...
@Override
public int getItemViewType(int position) {
return messages.get(position).type.ordinal();
}
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment