Hi!
I have a problem with full screen applications. I want to achieve an application with software keyboard support (WindowSoftInputModeAdjust.Resize), but I want to hide the statusbar. If I implement the full screen feature, then the keyboard support doesn't work.
My code is:
Xamarin.Forms.Application.Current.On<Xamarin.Forms.PlatformConfiguration.Android>().UseWindowSoftInputModeAdjust(WindowSoftInputModeAdjust.Resize);
Window.AddFlags(WindowManagerFlags.Fullscreen);
Is it possible to solve this issue?
Thanks, Balazs
0