Skip to content

Instantly share code, notes, and snippets.

@MarcBruins
Created October 14, 2017 10:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MarcBruins/4acafd91a278909c4aae089b136cb457 to your computer and use it in GitHub Desktop.
Save MarcBruins/4acafd91a278909c4aae089b136cb457 to your computer and use it in GitHub Desktop.
MonkeysView.cs
using Android.App;
using Android.OS;
using MvvmCross.Droid.Views;
namespace MonkeyList.Droid
{
[Activity]
public class MonkeysView : MvxActivity
{
protected override void OnCreate(Bundle bundle)
{
base.OnCreate(bundle);
SetContentView(Resource.Layout.MonkeyView);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment