Skip to content

Instantly share code, notes, and snippets.

@dsibinski
Created March 11, 2017 08:18
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 dsibinski/672dfa743c1b6e85457b8de6a5470f78 to your computer and use it in GitHub Desktop.
Save dsibinski/672dfa743c1b6e85457b8de6a5470f78 to your computer and use it in GitHub Desktop.
Android activity
[Activity(Label = "MoneyBack", 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);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment