1

BottomNavigationBar をカスタマイズしようとしています。

デ

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

0 に答える 0