AdaptiveTableLayout icon indicating copy to clipboard operation
AdaptiveTableLayout copied to clipboard

Is it possible to remove row headers shadow?

Open YStepiuk-DOIT opened this issue 6 years ago • 2 comments

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

YStepiuk-DOIT avatar Jun 25 '19 12:06 YStepiuk-DOIT

inside your adapter you can disable shadows by disable colors background inside method onBindHeaderColumnViewHolder() I hope this help you

GamalSebaee avatar Aug 29 '19 16:08 GamalSebaee

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>

ugar0ff avatar Oct 03 '19 09:10 ugar0ff