I have a project in xamarin forms, with a webview inside it. When clicking on any input the keyboard appears, however it overlays the input of the html page.
Does anyone know how to solve it?
I have a project in xamarin forms, with a webview inside it. When clicking on any input the keyboard appears, however it overlays the input of the html page.
Does anyone know how to solve it?
Try doing this on your App.Xaml.cs
using AndroidSpecific = Xamarin.Forms.PlatformConfiguration.AndroidSpecific;
AndroidSpecific.Application.SetWindowSoftInputModeAdjust(this, AndroidSpecific.WindowSoftInputModeAdjust.Resize);
Put this in your App.cs
Xamarin.Forms.PlatformConfiguration.AndroidSpecific.Application.SetWindowSoftInputModeAdjust(this, Xamarin.Forms.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust.Resize);