Skip to content

Instantly share code, notes, and snippets.

@ziginsider
Created November 15, 2017 23:00
Show Gist options
  • Save ziginsider/f23498cb4c30197fe719deb7b71488cf to your computer and use it in GitHub Desktop.
Save ziginsider/f23498cb4c30197fe719deb7b71488cf to your computer and use it in GitHub Desktop.
public interface RowType {
int BUTTON_ROW_TYPE = 0;
int IMAGE_ROW_TYPE = 1;
int TEXT_ROW_TYPE = 2;
int getItemViewType();
void onBindViewHolder(RecyclerView.ViewHolder viewHolder);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment