AdaptiveTableLayout
AdaptiveTableLayout copied to clipboard
Is it possible to remove row headers shadow?
I want to know if it's possible to somehow remove row headers shadow. I want to hide row headers, I just set their width to 0, but I still can see their shadow. Can somebody help with that?
Thanks
inside your adapter you can disable shadows by disable colors background inside method onBindHeaderColumnViewHolder() I hope this help you
I want to know if it's possible to somehow remove row headers shadow. I want to hide row headers, I just set their width to 0, but I still can see their shadow. Can somebody help with that?
Thanks
Add to your colors.xml next lines:
<!-- Overriding Default AdaptiveTableLayout colors-->
<color name="shadow_end">#00000000</color>
<color name="shadow_start">#00000000</color>