0
I have a project in Xamarin Forms, with a webview inside it. When clicking on any input the keyboard appears, but overrides the html page input.
someone knows how to solve?
0
I have a project in Xamarin Forms, with a webview inside it. When clicking on any input the keyboard appears, but overrides the html page input.
someone knows how to solve?
0
Try to do it in yours App.Xaml.Cs
using AndroidSpecific = Xamarin.Forms.PlatformConfiguration.AndroidSpecific;
AndroidSpecific.Application.SetWindowSoftInputModeAdjust(this, AndroidSpecific.WindowSoftInputModeAdjust.Resize);
0
Put that in your App.Cs
Xamarin.Forms.PlatformConfiguration.AndroidSpecific.Application.SetWindowSoftInputModeAdjust(this, Xamarin.Forms.PlatformConfiguration.AndroidSpecific.WindowSoftInputModeAdjust.Resize);
Browser other questions tagged c# xamarin webview
You are not signed in. Login or sign up in order to post.
did not solve, it is the same method of the above answer
– Guilherme Lima
Put inside the builder?
– Bruno A. Klein
yes, before Initializecomponent, then also,
– Guilherme Lima