我正在尝试使用安装在Windows上的Xamarin工作室创建一个跨平台本机应用程序。它目前针对Android.I我收到以下错误。
Projects \ sample \ Android \ Resources \ layout \ Main.axml(1,1):错误CS0116: 命名空间不能直接包含字段或方法等成员 (CS0116)(sample.Android)
这是生成的布局文件,我没有对其进行任何更改。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<Button
android:id="@+id/myButton"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello" />
</LinearLayout>