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').
請我該如何解決這一問題?可能是什麼問題呢?我需要一個第三方庫來實現嗎? 感謝
你在'colors.xml'名字list_background資源? – Raghunandan