我在这里使用的图标都是彩色的,但在运行时不显示。 我在xml中尝试了app:itemIconTint =“@ null”,但没有用。
XML CODE:
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item android:id="@+id/home"
android:title="@string/home"
android:icon="@drawable/icon_home"
app:itemIconTint="@null"/>
<item android:id="@+id/help"
android:title="@string/help"
android:icon="@drawable/icon_help"/>
</menu>
**这是另一个布局文件,将出现幻灯片抽屉。我删除了不必要的代码以使其变得简单**
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
........../>
</LinearLayout>
<android.support.v4.widget.DrawerLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.NavigationView
android:layout_width="match_parent"
android:layout_height="match_parent"
app:menu="@menu/navigation"
android:layout_gravity="start">
</android.support.design.widget.NavigationView>
</android.support.v4.widget.DrawerLayout>
</RelativeLayout>
答案 0 :(得分:1)
将此添加到您的活动中
navi_view.setItemIconTintList(null);
其中navi_view是NavigationView的对象。