在BottomNavigationView中更改图标颜色

4
我想改变在BottomNavigationView中使用的可绘制对象的颜色,但我所做的更改似乎没有起作用。
我尝试在菜单资源中使用android:iconTint,并在矢量XML文件中更改颜色,但都不起作用。
icon.xml :
<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="24dp"
    android:height="24dp"
    android:viewportWidth="24"
    android:viewportHeight="24">
  <path
      android:fillColor="@color/secondary"
      android:pathData="M4.5,8c1.04,0 2.34,-1.5 4.25,-1.5c1.52,0 2.75,1.23 2.75,2.75c0,2.04 -1.99,3.15 -3.91,4.22C5.42,14.67 4,15.57 4,17c0,1.1 0.9,2 2,2v2c-2.21,0 -4,-1.79 -4,-4c0,-2.71 2.56,-4.14 4.62,-5.28c1.42,-0.79 2.88,-1.6 2.88,-2.47c0,-0.41 -0.34,-0.75 -0.75,-0.75C7.5,8.5 6.25,10 4.5,10C3.12,10 2,8.88 2,7.5C2,5.45 4.17,2.83 5,2l1.41,1.41C5.41,4.42 4,6.43 4,7.5C4,7.78 4.22,8 4.5,8zM8,21l3.75,0l8.06,-8.06l-3.75,-3.75L8,17.25L8,21zM20.37,6.29c-0.39,-0.39 -1.02,-0.39 -1.41,0l-1.83,1.83l3.75,3.75l1.83,-1.83c0.39,-0.39 0.39,-1.02 0,-1.41L20.37,6.29z"/>
</vector>


botton_nav_menu.xml :
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">

    <item
        android:id="@+id/miHome"
        android:icon="@drawable/ic_library_books"
        android:title="Home"
        />

    <item
        android:id="@+id/miMusic"
        android:icon="@drawable/ic_library_music"
        android:iconTint="@color/secondary"
        android:iconTintMode="add"
        android:title="Music" />

    <item
        android:id="@+id/miPlacehoder"
        android:title="" />

    <item
        android:id="@+id/miCatalogue"
        android:icon="@drawable/ic_catalogue"
        android:title="Catalogue" />

    <item
        android:id="@+id/miWriter"
        android:icon="@drawable/ic_write"
        android:title="Writer" />

</menu>

main_activity.xml :
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity"
    android:background="@color/white">

    <com.google.android.material.bottomappbar.BottomAppBar
        android:id="@+id/bottomAppBar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom"
        android:backgroundTint="@color/primary">

        <com.google.android.material.bottomnavigation.BottomNavigationView
            android:id="@+id/bottomNavigationView"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_marginEnd="16dp"
            android:background="@android:color/transparent"
            app:elevation="0dp"
            app:menu="@menu/bottom_nav_menu"
            android:layout_marginRight="16dp">

        </com.google.android.material.bottomnavigation.BottomNavigationView>

    </com.google.android.material.bottomappbar.BottomAppBar>

    <com.google.android.material.floatingactionbutton.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:backgroundTint="@color/secondary"
        android:src="@drawable/ic_add"

        app:layout_anchor="@id/bottomAppBar"/>

</androidx.coordinatorlayout.widget.CoordinatorLayout>

enter image description here


我建议您参加[tour]并阅读[ask]以获取有关如何提问的信息。代码应直接发布在问题中,而不是作为图像。 - Henry Twist
1
@HenryTwist 感谢您的评论,我已经编辑了我的帖子。 - Amine Ch 99
当您选择底部导航时,它应该显示不同的颜色。 - Amit pandey
@Amitpandey 我想要默认颜色是蓝色而不是白色,当它被按下时变得更大并改变颜色。我正在使用Material Design的BottomAppBar。 - Amine Ch 99
3个回答

2
BottomNavigationView 的图标色调由 app:itemIconTint 属性控制,而不是您菜单或可绘制资源中指定的色调。

因此,您应该像这样编写:

<com.google.android.material.bottomnavigation.BottomNavigationView
    ...
    app:itemIconTint="@color/navigation_icon_tint" />

如果您希望颜色根据选择状态而改变,则应使用具有选中状态的选择器,而不是静态颜色:

<selector>

    <item android:state_checked="true" android:color="..." />
    <item android:color="..." />
</selector>

作为参考,您可以在material.io的文档中阅读有关材料组件的信息,其中应涵盖与样式和用法相关的所有内容。


如何将选择器应用于底部导航视图? - user16612111

0

如果你想改变图标和矢量的颜色,你可以从这里进行更改

    app:itemIconTint="@color/navigation_icon_tint"

如果你想要改变底部导航栏中选中图标的颜色,可以使用以下代码:

selector_min_home name

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="Your Deafault drawable" android:state_checked="false"/>
<item android:drawable="Your Selected Drawable" android:state_checked="true"/>
</selector>

并将其设置为

<menu xmlns:android="http://schemas.android.com/apk/res/android">

<item
    android:id="@+id/miHome"
    android:icon="@drawable/selector_min_home "
    android:title="Home"
    />

....

</menu>

0

您可以直接从icon.xml更改向量图标的颜色:

<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="24dp"
    android:height="24dp"
    android:viewportWidth="24"
    android:viewportHeight="24">
  <path
      android:fillColor="@color/navigation_icon_tint"
      android:pathData="M4.5,8c1.04,0 2.34,-1.5 4.25,-1.5c1.52,0 2.75,1.23 2.75,2.75c0,2.04 -1.99,3.15 -3.91,4.22C5.42,14.67 4,15.57 4,17c0,1.1 0.9,2 2,2v2c-2.21,0 -4,-1.79 -4,-4c0,-2.71 2.56,-4.14 4.62,-5.28c1.42,-0.79 2.88,-1.6 2.88,-2.47c0,-0.41 -0.34,-0.75 -0.75,-0.75C7.5,8.5 6.25,10 4.5,10C3.12,10 2,8.88 2,7.5C2,5.45 4.17,2.83 5,2l1.41,1.41C5.41,4.42 4,6.43 4,7.5C4,7.78 4.22,8 4.5,8zM8,21l3.75,0l8.06,-8.06l-3.75,-3.75L8,17.25L8,21zM20.37,6.29c-0.39,-0.39 -1.02,-0.39 -1.41,0l-1.83,1.83l3.75,3.75l1.83,-1.83c0.39,-0.39 0.39,-1.02 0,-1.41L20.37,6.29z"/>
</vector>

同时也使用了色调..

<vector 
...
android:tint="@color/navigation_icon_tint">
...
</vector>

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接