evrencoskun / TableView

TableView is a powerful Android library for displaying complex data structures and rendering tabular data composed of rows, columns and cells.
MIT License
3.14k stars 459 forks source link

How to get the rowPosition&columnPosition of CELL at the same time? #239

Open LiuYangChao opened 5 years ago

LiuYangChao commented 5 years ago

@Override public int getCellItemViewType(int column) { List<List> cellList = mTableViewModel.getCellList(); if(column == 0){ return CELL_DISPLAY } } I want to get the row Position in this method!What should I do?