我刚刚在构建之后在xamarin.Android中创建了一个带有按钮的示例应用程序我得到的错误资源在当前上下文中不存在。 我也没有改变命名空间。
MainActivity.cs代码:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<com.google.android.youtube.player.YouTubePlayerView
android:id="@+id/youtubePlayer"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</com.google.android.youtube.player.YouTubePlayerView>
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:onClick="onClick"
android:text="Button" />
</LinearLayout>
在google中,他们说命名空间更改会产生此错误,但我在Resources.designer.cs中有相同的命名空间。
如何处理此错误?
我试过创建一个新项目并打开MainActivity.cs文件而不修改任何内容我仍然收到此错误