This is just a simplified example, but I\'m trying to set this up so that when I open up this page in my Application, the first thing that happens is the keyboard pops up re
Use the Focus method
Focus
nameentry.Focus();
If you want the focus to be set when your page appears, you should probably do this in the OnAppearing method
OnAppearing
protected override void OnAppearing () { base.OnAppearing (); nameentry.Focus(); }