In some case I need to hide application form but still have running it in background. How can I make it? Tried this code but not works for me:
var mLayout = FindViewById<LinearLayout> (Resource.Id.main_lay);
mLayout.Visibility = ViewStates.Invisible;
where main_lay - id of LinearLayout cmponent.