I need to change TabLayout (extending HorizontalScrollView) background to transparent without changing primary color from styles. If I set a background to #00000000 it beco
Use:
android:background="@android:color/transparent"
also in the AppBarLayout. to remove the shadow to make look better you can remove the elevation of the AppBarlayout with:
app:elevation="0dp"