当我尝试使用visual studio xamarin构建导航抽屉时,出现以下错误。我使用sdk安装了android支持存储库,并且还使用了nuget来安装xamarin.android.v7,... v4等
知道我可能做错了什么或没做过哪些导致了以下错误?感谢
找不到属性' layout_scrollFlags'在 package' Leftdrawerlayout.Leftdrawerlayout'
找不到属性'菜单'的资源标识符。在包中 ' Leftdrawerlayout.Leftdrawerlayout'
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:fitsSystemWindows="true"
android:layout_height="match_parent">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize"
android:background="#33B86C"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:layout_scrollFlags="scroll|enterAlways" />
<android.support.v4.widget.DrawerLayout
android:id="@+id/drawer_layout"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:layout_width="match_parent">
<RelativeLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_height="match_parent"
android:layout_width="200dp"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:menu="@menu/menu" />
</android.support.v4.widget.DrawerLayout>
</LinearLayout>
答案 0 :(得分:0)
layout_scrollFlags
属性属于android.support.design
个包。请务必参考Xamarin.Android.Support.Design Nuget package