ナビゲーション用の引き出しを作成しようとしています。このチュートリアルに従うことをしようとAndroidスタジオ、エラー、ナビゲーションドロワー
$ Error:(7, 23) No resource found that matches the given name (at 'icon' with value '@drawable/ic_menu_camera').
Error:(11, 23) No resource found that matches the given name (at 'icon' with value '@drawable/ic_menu_gallery').
Error:(15, 19) No resource found that matches the given name (at 'icon' with value '@drawable/ic_menu_slideshow').
Error:(23, 31) No resource found that matches the given name (at 'icon' with value '@drawable/ic_menu_share').
Error:(27, 31) No resource found that matches the given name (at 'icon' with value '@drawable/ic_menu_send').
- - 私は、これらのエラーを取得しています。ここ
https://www.youtube.com/watch?v=ju837bQOBfgは私がすることもでき、エラー
$<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<group android:checkableBehavior="single">
<item android:id="@+id/nav_first_layout"
android:icon="@drawable/ic_menu_camera"
android:title="First Layout"/>
<item android:id="@+id/nav_second_layout"
android:icon="@drawable/ic_menu_gallery"
android:title="Second Layout"/>
<item android:id="@+id/nav_third_layout"
android:icon="@drawable/ic_menu_slideshow"
android:title="Third Layout"/>
</group>
<item> android:title="Communicate">
<menu>
<item
android:id="@+id/nav_share"
android:icon="@drawable/ic_menu_share"
android:title="Share" />
<item
android:id="@+id/nav_send"
android:icon="@drawable/ic_menu_send"
android:title="Send" />
</menu>
</item>
</menu>
<!--</menu>-->
<!-- </item>-->
<!--<item android:id="@+id/action_settings"-->
<!--android:title="@string/action_settings"-->
<!--android:orderInCategory="100"-->
<!--app:showAsAction="never" />-->
Here is the source code from the video
を持っている私のGLOBAL.XMLファイルです私のソースコードをアップロードしてください。私はアンドロイドスタジオの初心者です。私の唯一の目標は、ナビゲーション用の引き出しを作る方法を学ぶことです。他のヘルプ、簡単なチュートリアルへのリンク、または私が間違っているところへのポインタは非常に高く評価されるでしょう!
そのリソースがドロウアブルフォルダに存在するかどうか確認してください –