2014-02-17 142 views
0

我一直在關注Android設計的教程,並決定編寫導航抽屜的UI佈局。 在我activity_main.xml文件,我寫了這一點 -設計導航抽屜中的錯誤

<android.support.v4.widget.DrawerLayout 

    xmlns:android="http://schemas.android.com/apk/res/android" 

    android:id="@+id/drawer_layout" 

    android:layout_width="match_parent" 

    android:layout_height="match_parent"> 

    <!-- Framelayout to display Fragments --> 

    <FrameLayout 

     android:id="@+id/frame_container" 

     android:layout_width="match_parent" 

     android:layout_height="match_parent" /> 

    <!-- Listview to display slider menu --> 

    <ListView 

     android:id="@+id/list_slidermenu" 

     android:layout_width="240dp" 

     android:layout_height="match_parent" 

     android:layout_gravity="start" 

     android:choiceMode="singleChoice" 

     android:divider="@color/list_divider" 

     android:dividerHeight="1dp"  

     android:listSelector="@drawable/list_selector" 

     android:background="@color/list_background"/> 

    </android.support.v4.widget.DrawerLayout> 

但我不斷收到一個錯誤說 -

error: Error: No resource found that matches the given name (at 'divider' with value '@color/ list_divider').

error: Error: No resource found that matches the given name (at 'background' with value '@color/ list_background').

請我該如何解決這一問題?可能是什麼問題呢?我需要一個第三方庫來實現嗎? 感謝

+1

你在'colors.xml'名字list_background資源? – Raghunandan

回答

0

在color.xml文件

<color name="list_divider">#000000</color> 
<color name="list_background">#3D3B3B</color>