1

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

德

我通过将 common itemBackground 指定为 BottomNavigatoinBar 来设置选项卡的形状和颜色,但我希望不同的选项卡具有不同的颜色。

有没有办法分别为每个元素设置背景?

这是导航代码:

<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"
        />
4

0 回答 0