MikeSmith0504
Results
1
issues of
MikeSmith0504
I delete row in onCellLongPressed method ,using the method parametor rowindex,code as below, ``` tableview.setTableViewListener(new SimpleTableViewListener(tableview,null,(o, colindex, rowindex) ->{ comadapter.removeRow(rowindex); //delete a row })); ``` the first row deleted successfully,then...