Visual Studio Android Emulator不显示应用内容

时间:2017-06-25 21:46:30

标签: android visual-studio xamarin

我不知道为什么,当我运行应用程序时,它什么也没显示。我放了一个简单的按钮,模拟器只显示"项目"别无其他。 This is the preview

And this is when the project is running

非常确定它不是速度问题,我有一台好电脑。

Main.axml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:minWidth="25px"
    android:minHeight="25px">
<Button
    android:text="Button"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:id="@+id/button1" />

MainActivity.cs

using Android.App;
using Android.Widget;
using Android.OS;

namespace App1
{
    [Activity(Label = "App1", MainLauncher = true, Icon = "@drawable/icon")]
    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);
            Button btn = FindViewById<Button>(Resource.Id.button1);
        }
    }
}

1 个答案:

答案 0 :(得分:0)

您需要取消注释此行:

 // SetContentView (Resource.Layout.Main);

基本上通过评论你已经杀死了你的axml文件和你的后端代码之间的唯一连接。