Xamarin - 布局文件出错

时间:2014-09-03 13:18:57

标签: android xamarin

我正在尝试使用安装在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>

0 个答案:

没有答案