I have an Android activity and there is one EditText in the whole layout. For some reason, whenever the activity starts, the keyboard comes up. I have tried
EditText
Try these for Xamarin.Android (Cross Platform)
Xamarin.Android
this.Window.SetSoftInputMode (SoftInput.StateHidden);
Or
Add this to manifest,
[Activity(Label = "SampleApp", MainLauncher = true, Icon = "@drawable/icon", WindowSoftInputMode = SoftInput.StateHidden)]