Skip to content

Instantly share code, notes, and snippets.

@zewolfe
zewolfe / RowsAdapter.java
Last active September 16, 2018 17:23
Simple Android Data Table
public abstract class RowsAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder> {
// The different types of rows that make up our data table
private final static List<Class<? extends Row>> types = new ArrayList<>();
private List<Row> rows;
static {
types.add(HeaderRow.class);
types.add(DessertRow.class);
}