0
ここで使用しているアイコンはすべて色付きですが、実行時には表示されません。 私はapp:itemIconTint = "@ null"をxmlにしようとしましたが、使用しませんでした。スライド式引き出しに色付きのアイコンを使用できません
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>
NavigationView @ Aryanを使用していますか? –
はいナビゲーションビューを使用していますが、XMLコードも追加しています。 –
あなたのアクティビティに追加する@Aryan –