Controls showing in designer but not in emulator

后端 未结 3 1294
野的像风
野的像风 2021-01-15 23:31

This is my first Xamarin app. I have my environment set up in Visual Studio, and have a template project which I can run in the Android emulator.

Having dragged and

相关标签:
3条回答
  • 2021-01-16 00:12

    In my case, I had to update my Main.xml file with the updates I put into the Main.axml and Rebuild.

    0 讨论(0)
  • 2021-01-16 00:17

    navigate to MainActivity.cs and uncomment this code

    SetContentView (Resource.Layout.Main);
    

    and rebuild the solution and debug.

    Let me know it if helps!

    0 讨论(0)
  • 2021-01-16 00:21

    Just downloaded your code and ran it. Uncommenting SetContentView (Resource.Layout.Main); it worked to me.

    [Activity(Label = "Tgo.AndroidApp", 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);
        }
    }
    

    Here a nice guide to get you started with Xamarin Android.

    0 讨论(0)
提交回复
热议问题