Is it possible to remove row headers shadow?
YStepiuk-DOIT opened this issue · 2 comments
YStepiuk-DOIT commented
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
GamalSebaee commented
inside your adapter you can disable shadows by
disable colors background inside method onBindHeaderColumnViewHolder()
I hope this help you
ugar0ff commented
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>