Xamarin WebView Keyboard above the site

0

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?

    
asked by anonymous 24.11.2017 / 17:52

2 answers

0

Try doing this on your App.Xaml.cs

 using AndroidSpecific = Xamarin.Forms.PlatformConfiguration.AndroidSpecific; 

 AndroidSpecific.Application.SetWindowSoftInputModeAdjust(this, AndroidSpecific.WindowSoftInputModeAdjust.Resize); 

    
25.11.2017 / 11:34
0

Put this in your App.cs

Xamarin.Forms.PlatformConfiguration.AndroidSpecific.Application.SetWindowSoftInputModeAdjust(this, Xamarin.Forms.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust.Resize);
    
28.11.2017 / 11:59