3
我在Visual Studio 2015中使用Xamarin創建了新的Android應用程序。 我將組件Android支持設計庫23.4.0.1添加到我的項目(組件) In我的佈局(Main.axml)我從入門https://components.xamarin.com/gettingstarted/xamandroidsupportdesign 但我得到錯誤android.support.design.widget.CoordinatorLayout沒有聲明未聲明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>
你從哪裏得到這個錯誤?也許這只是一個警告,因爲xmlns不包含它的定義? – Cheesebaron