I need to change the background of the TabLayout (extension HorizontalScrollView) to transparent, without changing the main color of the styles. If I set the background to # 00000000, it will become primaryColor. If I set alpha to 0, I get the same behavior.

<android.support.design.widget.TabLayout android:id="@+id/tabs" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="#00000000" android:hapticFeedbackEnabled="true"/>
Is there a way to set the background transparency without changing the colors of the styles?
source share