I'm looking to create a custom renderer to style the TableView Headers on Android devices. Right now it is defaulted to the black background and blue text. How can I reference the header inside the custom renderer?
Thanks
I'm looking to create a custom renderer to style the TableView Headers on Android devices. Right now it is defaulted to the black background and blue text. How can I reference the header inside the custom renderer?
Thanks
You don't necessarily need a custom renderer for that. You can simply setup the layout for your header even from XAML for your listview the exact same way you would do with the cells, the only difference is that you'll use the "GroupHeaderTemplate" element of the listview, like this:
Just a reminder, you are using the same format and the "ItemTemplate" element of the listview when you are styling the cells.