Skip to content

Instantly share code, notes, and snippets.

@lieuwex
Last active August 29, 2015 13:59
Show Gist options
  • Save lieuwex/10535548 to your computer and use it in GitHub Desktop.
Save lieuwex/10535548 to your computer and use it in GitHub Desktop.
private const int DIALOG_LOGIN = 1;
protected override void OnCreate(Bundle savedInstanceState)
{
base.OnCreate(savedInstanceState);
this.SetContentView(R.Layouts.activity_android_dialog);
var launchButton = FindViewById<Button>(R.Ids.btn_launch);
launchButton.Click += delegate { ShowDialog(DIALOG_LOGIN); };
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment