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

Cell is not displaying full content #157

Open Chirouter opened 6 years ago

Chirouter commented 6 years ago

I have a table which is being populated when the activity is opened. On the same table and activity, I have a function to modify the content of the table. After the editing progress is finished, the table will show the data along with the edited one.

I'm setting up the data by calling the setAllItems method in my TableAdapter. The problem is the updated data is not fully displayed in the cell it represented.

For example : the initial data is 600, when I changed it to 5000008 only the 50000 is displayed.

For what I see is that the cell is still taking the width of the previous 600 value's width.