I added the code below in MainActivity of my Android project but it still displays the virtual keyboard, any idea?
`protected override void OnCreate(Bundle bundle)
{
base.OnCreate(bundle);
this.Window.SetSoftInputMode(SoftInput.StateAlwaysHidden);
}`