我在Visual Studio 2015中使用Xamarin创建新的Android应用程序。 我将组件Android支持设计库23.4.0.1添加到我的项目(组件) 在我的布局(Main.axml)中,我从入门https://components.xamarin.com/gettingstarted/xamandroidsupportdesign复制并过去 但我收到错误android.support.design.widget.CoordinatorLayout未声明
有什么想法吗?
Maxin.axml:
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.Toolbar
app:layout_scrollFlags="scroll|enterAlways">
<android.support.design.widget.TabLayout
app:layout_scrollFlags="scroll|enterAlways" />
</android.support.v7.widget.Toolbar>
</android.support.design.widget.AppBarLayout>
</android.support.design.widget.CoordinatorLayout>
答案 0 :(得分:3)
尝试卸载支持库,然后重新安装它们。
如果这不起作用,请尝试进入C:\Users\{Your User}\AppData\Local\Xamarin
并删除其中的所有文件夹。然后在Visual Studio中执行“清理并重建”。