Android:导航抽屉项目图标不显示原始颜色

时间:2015-12-23 08:55:16

标签: android android-fragments navigation android-navigationview

我在片段中使用导航抽屉。在导航抽屉中,我有一个标题,文本和图像,它从菜单drawer.xml中获取。

问题是当我在手机中启动导航抽屉时,图像显示为灰色。

XML

<android.support.design.widget.NavigationView
    android:id="@+id/navigation_view"
    android:layout_height="match_parent"
    android:layout_width="wrap_content"
    android:layout_gravity="start"
    app:itemIconTint="@android:color/transparent"
    app:headerLayout="@layout/header"
    app:menu="@menu/drawer" />

drawer.xml

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

    <group android:checkableBehavior="single">

    <item
        android:id="@+id/home"
        android:checked="false"
        android:icon="@drawable/ic_home"
        android:title="Dashboard" />
    <item
        android:id="@+id/inbox"
        android:checked="false"
        android:icon="@drawable/sho"
        android:title="Sho" />

    <item
        android:id="@+id/starred"
        android:checked="false"
        android:icon="@drawable/recharge"
        android:title="Recharge " />

    <item
        android:id="@+id/sent_mail"
        android:checked="false"
        android:icon="@drawable/add"
        android:title="Add " />

    <item
        android:id="@+id/drafts"
        android:checked="false"
        android:icon="@drawable/history"
        android:title="Recharge History" />


    <item
        android:id="@+id/allmail"
        android:checked="false"
        android:icon="@drawable/about"
        android:title="About" />
    <item
        android:id="@+id/trash"
        android:checked="false"
        android:icon="@drawable/settings"
        android:title="Settings" />


    </group>
</menu>

其实我想 Naviagtion抽屉喜欢

enter image description here

但是,当我在移动设备上启动应用程序时,它就像

enter image description here

0 个答案:

没有答案