SortableTableView icon indicating copy to clipboard operation
SortableTableView copied to clipboard

An Android library containing a simple TableView and an advanced SortableTableView providing a lot of customisation possibilities to fit all needs.

Results 51 SortableTableView issues
Sort by recently updated
recently updated
newest added

I am using this table view and trying to create a table with a header checkbox and checkbox for each row. Something like below; ![image](https://user-images.githubusercontent.com/7381368/81362815-175cda00-9125-11ea-8c9e-9975d2e7da20.png) I was able to render...

I want to align text in one column to the left and the text in other column to the right Want a result as specified in the link below: [https://drive.google.com/open?id=1YkWoI_s40n77IPAzIk2I3370t4nlJkP8](url)...

tableView.setDataAdapter(new SimpleTableDataAdapter(getContext(),spaceProbes)); i still don't understand where use #settextsize i try like this tableView.setDataAdapter(new SimpleTableDataAdapter(getContext(),spaceProbes).setTextSize(10)) still doesn't work;

Is there any way that tableview auto-set width as per device-width: right now I am using below code to set width but I want match parent like property for width....

help wanted

Select last a row: ``` public void selectLastRow() { if (tableDataView.getCount() > 0) { int rowIndex = tableDataView.getCount() - 1; AdapterView parent = tableDataView; View view = new LinearLayout(tableDataAdapter.getContext()); view.setLayoutParams(tableDataView.getLayoutParams());...

Hello, is there any possibilities to change each background color of a columns? For example, Column A = Green Color Column B = Red Color Column C= Blue Color Thank...

This is surely an amazing library and i'm interested in the pro version, but i'm not sure if it does support dynamic width or if i'm just using it the...

Option in the xml attribute to set left or right position for the SortableTableView icon. Default position will be left.

https://github.com/ISchwarz23/SortableTableView#header-click-listening I have followed this doc, But no luck in header click listener. TableData click listener working fine

Is it possible to remove onClick on rows? I have a tablayout, where sliding left and right to change fragment doesn't work properly, because the onClick on rows interfers my...