0
我得到此一對夫婦的錯誤,這是毫無意義的對我說:不能從APK/RES-自動命名空間訪問項目資源
下面的代碼:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/DrawerLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- The main content view -->
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:id="@+id/ToolbarLayout">
<include
android:id="@+id/Toolbar" android:layout="@layout/Toolbar"/><!-- AVAILABLE HERE --><!-- app:layout_scrollFlags="scroll|enterAlways"-->
</android.support.design.widget.AppBarLayout>
<FrameLayout
android:id="@+id/ContentFrame"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/ToolbarLayout"/>
</RelativeLayout>
<android.support.design.widget.NavigationView
android:id="@+id/NavView"
android:layout_width="wrap_content"
android:layout_height="match_parent"
app:headerLayout="@layout/Toolbar"
app:menu="@menu/Toolbar" /> <!-- NOT AVAILABLE HERE -->
<!--app:headerLayout="@layout/NavHeader"
app:menu="@menu/NavMenu"
android:layout_gravity="start"-->
</android.support.v4.widget.DrawerLayout>
和這裏的錯誤列表:
正如您可以看到工具欄清晰地存在於包含標記中引用的內容,但是在使用應用程序名稱空間的兩個屬性中不可用。
有人知道發生了什麼事嗎?