代码之家  ›  专栏  ›  技术社区  ›  Marzi Heidari

白色表布局的涟漪效应

  •  2
  • Marzi Heidari  · 技术社区  · 6 年前

    Android标签上的涟漪效果默认为白色。我想增加一个连锁反应 tablayout 但我的标签背景已经是白色的,涟漪效应是看不见的。

     <android.support.design.widget.TabLayout
                android:id="@+id/tabs"
                android:layout_width="match_parent"
                android:layout_height="48dp"
                android:layout_gravity="end"
                android:layout_weight="1"
                android:background="@color/white"
                app:layout_collapseMode="pin"
                app:tabMode="fixed"
                app:tabIndicatorColor="@color/colorPrimary"
                app:tabBackground="?attr/selectableItemBackground"
                app:tabSelectedTextColor="@color/colorPrimary"
                app:tabTextColor="#222"
                />
    

    有没有办法改变小报的涟漪效果的颜色,这样即使在白色背景下也能看到它?

    1 回复  |  直到 6 年前
        1
  •  1
  •   Man    6 年前

    您需要使用设置背景 应用程序:tabbackground 在标签上。

    <android.support.design.widget.TabLayout
                android:id="@+id/tabs"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                app:tabBackground="@drawable/tab_selector_ripple">
    

    tab_选择器_ripple.xml

    <?xml version="1.0" encoding="utf-8"?>
    <ripple xmlns:android="http://schemas.android.com/apk/res/android"
        android:color="#0e0e0e">
        <item android:drawable="@color/white" />
    
    </ripple>
    

    如果您对此有更多疑问,请告诉我?