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

Disabling Option and Customization #257

Open KathirvelAngler opened 5 years ago

KathirvelAngler commented 5 years ago
  1. How to disable all the click events?
  2. How to change background of custom cell,row and column?
evrencoskun commented 4 years ago

Hi @KathirvelAngler,

  1. With the new version, TableView has some xml attributes. You can use them like this;
<com.evrencoskun.tableview.TableView
    ...
    app:allow_click_inside_cell="false"
    app:allow_click_inside_row_header="false"
    app:allow_click_inside_column_header="false"
/>
  1. Please check the issue and my sample