如何运行Main.axml?

时间:2016-04-05 12:51:29

标签: c# android mobile xamarin emulation

您好我在Visual Studio 2015上安装了Xamarin 并希望创建一个Android应用程序。

我想在此页面上执行以下步骤:https://msdn.microsoft.com/en-us/library/mt488769.aspx
(文件新项目/模板/ Visual C#/跨平台/空白应用程序(原生便携式))

当我调试这个空白项目时,
此窗口在启动时打开:
default window


但我想运行位于(Main.axml)

的以下窗口Reources/layout

wanted window

我缺少什么?
提前谢谢。

2 个答案:

答案 0 :(得分:2)

    public class MainActivity : Activity
{
    protected override void OnCreate(Bundle bundle)
    {
        base.OnCreate(bundle);

        // Set our view from the "main" layout resource
        SetContentView(Resource.Layout.Main);
    }

}

检查线

的setContentView(Resource.Layout.Main);

答案 1 :(得分:1)

在您的物理设备上调试它或使用GenyMotion仿真器,这个内置的模拟器很难看......