我正在尝试删除TabLayout选项卡上的材质波纹效果.
我想知道是否可以这样做?
有什么想法吗?
我已经尝试将stateListAnimator设置为null但它仍然无效
<android.support.design.widget.TabLayout android:id="@+id/tabLayout" android:layout_width="match_parent" android:layout_height="wrap_content" android:stateListAnimator="@null"/>
解决方法
尝试更改背景,例如,使用android的透明色.
<android.support.design.widget.TabLayout android:layout_width="match_parent" android:layout_below="@id/toolbar" android:layout_height="70dip" app:tabBackground = "@android:color/transparent" app:tabMode="fixed" />