无法从apk / res-auto命名空间访问项目资源

时间:2017-08-04 21:28:43

标签: android xamarin namespaces resources visual-studio-2017

我在这里得到一些错误对我来说没有意义:

这里是代码:

<?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>

以及错误列表:

Errors 如您所见,工具栏明显存在,因为它在include标记中被引用,但是在使用app命名空间的两个属性中不可用。

有人知道发生了什么吗?

1 个答案:

答案 0 :(得分:0)

资源的名称中不能包含大写字母。所以在这种情况下我需要将Toolbar.axml更改为toolbar.axml

https://bugzilla.xamarin.com/show_bug.cgi?id=36821

的xamarins票务系统中找到

资源