Android TabLayout tabPaddingTop and tabPaddingBottom not removed
Please refer to the above problem.
Even after I updated my design library to "23.2.0", the tab layout is all messed up.
Below is a tab layout.
Xml Part: -
<android.support.design.widget.TabLayout android:id="@+id/sliding_tabs" android:layout_width="match_parent" android:layout_height="wrap_content" app:tabIndicatorColor="@android:color/white" app:tabIndicatorHeight="@dimen/dp2" app:tabMode="fixed" app:tabSelectedTextColor="@android:color/white" app:tabTextAppearance="@style/MyCustomTabTextAppearance" />
xml styles: -
<resources> <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar"> <item name="colorPrimary">@color/colorPrimary</item> <item name="colorPrimaryDark">@color/color_156084</item> </style> <style name="MyCustomTabTextAppearance" parent="TextAppearance.Design.Tab"> <item name="android:textSize">@dimen/sp14</item> <item name="android:textColor">@android:color/white</item> <item name="textAllCaps">false</item> </style>
I installed the addon to -1dp and even made tabGravity to populate, but nothing works.
This code was used to work in earlier versions, but now, if I lower it, I get the def class definition error on TintManager.

source share