Open chirag38-unity opened 4 months ago
The way that worked for me:
in XML:
<com.evrencoskun.tableview.TableView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:allow_click_inside_cell="true"
app:allow_click_inside_column_header="true"
app:allow_click_inside_row_header="true" />
implements ITableViewListener: see wiki: 1.6. Creating a ClickListener
when creating a table:
tableView.setTableViewListener(new MyTableViewListener());
see wiki: 1.7. Setting the ClickListener
Adding a touch listener to my TableView is not working. I add after remote api and add columns before statically.