BottomNavigation中的不同项目背景

时间:2018-06-27 14:21:48

标签: android bottomnavigationview android-bottomnav android-bottom-nav-view

我正在尝试自定义我的BottomNavigationBar。

De

我通过在BottomNavigatoinBar中指定公共itemBackground来设置标签的形状和颜色,但是我希望不同的标签具有不同的颜色。

是否可以分别设置每个元素的背景?

这是导航代码:

<android.support.design.widget.BottomNavigationView
        android:id="@+id/navigation"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginEnd="0dp"
        android:layout_marginStart="0dp"
        android:background="@color/colorTransparent"

        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:menu="@menu/navigation"
        app:itemBackground="@drawable/round_blue"
        app:itemIconTint="@color/colorWhite"
        />

0 个答案:

没有答案