I new with the TableView component. Is there some one who can show me, how to read. one single Cell value.
If i am understand right public void onDataClicked - just return RowIndex int value - that fine - but not columnIndex. Or is there something like getSelectedCellValue() function or... how to implement
@OverRide
public void onDataClicked(int rowIndex, String[] strings) {
final String carString = "Click: " + rowIndex;
Toast.makeText(MainActivity.this, carString, Toast.LENGTH_SHORT).show();
Thanks for tips and support.