Skip to content

Instantly share code, notes, and snippets.

@anaselhajjaji
Created March 27, 2017 20:28
Show Gist options
  • Save anaselhajjaji/1324334e6f05999f70b6615c91e99bfa to your computer and use it in GitHub Desktop.
Save anaselhajjaji/1324334e6f05999f70b6615c91e99bfa to your computer and use it in GitHub Desktop.
using Android.App;
using Android.OS;
namespace RememberIt
{
[Activity(Label = "Things to remember")]
public class RememberListActivity : Activity
{
protected override void OnCreate(Bundle savedInstanceState)
{
base.OnCreate(savedInstanceState);
SetContentView(Resource.Layout.RememberList);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment