A Form View for Android, usage like listView or RecyclerView, different is use AbsFormCell instead of View
- add dependencies
compile 'nebulae.library.wheel:formview:x.x.x'//version can get from above badges
- extends
BaseAdapter
and implement
int getRowCount();
int getColumnCount();
T createCell(int rowNumber, int colNumber);
void bindCell(T cell, int rowNumber, int colNumber);
- set Adapter to FormView
mAdapter = new MyAdapter(/**/);
mFormView.setAdapter(mAdapter);
support NestedScroll(already implement NestedScrollChild
)
add TitleCell