2017-07-10 20 views
0

ナビゲーション用の引き出しを作成しようとしています。このチュートリアルに従うことをしようと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ファイルです私のソースコードをアップロードしてください。私はアンドロイドスタジオの初心者です。私の唯一の目標は、ナビゲーション用の引き出しを作る方法を学ぶことです。他のヘルプ、簡単なチュートリアルへのリンク、または私が間違っているところへのポインタは非常に高く評価されるでしょう!

+0

そのリソースがドロウアブルフォルダに存在するかどうか確認してください –

答えて

0

あなたがドロアブルをインポートしていないようです。ビデオからソースコードについて投稿したリンクから、/ NavigationDrawer/app/src/main/res/drawable-v21 /に移動します。ここにはすべてのドロワブルがあります。ここのすべてをコピーしてドロアブルの下に貼り付けますフォルダ。

関連する問題