android – 禁用Tablayout上的材质波纹

前端之家收集整理的这篇文章主要介绍了android – 禁用Tablayout上的材质波纹前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试删除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" />
原文链接:https://www.f2er.com/android/317192.html

猜你在找的Android相关文章