如何设置Tab背景颜色新的TabLayout材质组件

时间:2019-02-25 17:28:53

标签: android material-design material-components-android

我正在使用新的material components,我想实现这种设计 enter image description here

我为旧的TabLayout找到了这些答案

How do I change the color of icon of the selected tab of TabLayout?

Changing the background color of a Tab in TabLayout (Android design support library) doesn't occupy the entire tab space

我认为新的TabLayout可以更轻松地设置标签的背景并处理文本和图标的颜色更改

1 个答案:

答案 0 :(得分:2)

以下是设置“标签”背景颜色的步骤:

首先是代码,然后是一些简要说明:

代码:

<com.google.android.material.tabs.TabLayout
    android:id="@+id/tabLayout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:layout_constraintTop_toTopOf="parent"
    app:tabBackground="@drawable/tab_background_color_selector"
    app:tabIconTint="@color/tab_content_color_selector"
    app:tabIndicator="@null"
    app:tabSelectedTextColor="@color/md_white_1000"
    app:tabTextColor="@color/secondaryColor">

    <com.google.android.material.tabs.TabItem
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:icon="@drawable/ic_list"
        android:text="list" />

    <com.google.android.material.tabs.TabItem
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:icon="@drawable/ic_calender"
        android:text="calender" />
</com.google.android.material.tabs.TabLayout>

drawable / tab_background_color_selector.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@color/secondaryColor" android:state_selected="true" />
    <item android:drawable="@color/md_white_1000" />
</selector>

颜色 /tab_content_color_selector.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:color="@color/md_white_1000" android:state_selected="true" />
    <item android:color="@color/secondaryColor" />
</selector>

说明

tabBackground :是标签的背景,应为可绘制选择器。

tabIconTint :用于图标颜色,并且必须是 color 选择器。

tabIndicator =“ @ null”:因为在这种情况下它没有用。

tabSelectedTextColor tabTextColor 是不言自明的。