ISchwarz23 / SortableTableView

An Android library containing a simple TableView and an advanced SortableTableView providing a lot of customisation possibilities to fit all needs.
Apache License 2.0
1.05k stars 239 forks source link

Text alignment in the SortableTableView #196

Open omkarghurye1998 opened 4 years ago

omkarghurye1998 commented 4 years ago

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

Please help me !!!!!!

ISchwarz23 commented 4 years ago

Hey,

you can achieve this by creating your custom table data adapter. This adapter should return a TextView for each cell. Depending on the column index you can set the gravity of the TextView to left or right.

Best regards, Ingo