Ingo Schwarz

Results 59 comments of Ingo Schwarz

Hi @Dule95D, I'm really sorry, but I don't understand what exactly you are trying to achieve. Best regards, Ingo

Hi Jonathon, die what use case do you need this feature? I don't understand what you mean with "overlay the header when it's sorted". Do you want to get rid...

So, instead of the arrows on the left of the header view you want to have them above and below the header view?

Hi @surveamrita, please make sure that you're not using `wrap_content` as table height. Use `match_parent` or an absolute value instead. Best regards, Ingo

Hi @Hessu007, unfortunately, you can't listen for cell clicks. All clicks are related to a table item/row. But in case you always want to get the first column value of...

Unfortunately this is not possible. The click listener does not respect the column, only the row.

Hi @iampapagray, the described behaviour is the expected behaviour of the SimpleTableHeaderAdapter and SimpleTableDataAdapter. If you want to have another behaviour you should implement a custom Adapter. Best regards, Ingo

Hi @iampapagray, you should inherit from the `TableDataAdapter`. If you want to show string arrays in your table rows extend from `TableDataAdapter`. And then copy paste the code of the...

There is no way to make the table grow depending on it's content. It behaves the same as the ListView in Android. To workaround would be, to set a fixed...

Hey, unfortunately the table view cannot change anything about it. You have to make the recycler view forward the scroll events. I don't know how this can be achieved and...