Created
October 14, 2017 10:47
-
-
Save MarcBruins/4acafd91a278909c4aae089b136cb457 to your computer and use it in GitHub Desktop.
MonkeysView.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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