Hi John,
We have validated your query and we suggest you set Window.SetSoftInputMode(Android.Views.SoftInput.AdjustResize) in the Main Activity class of Android project after the LoadApplication method to resolve the reported issue. Please find the below code snippet for this
Code snippet
public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity
{
protected override void OnCreate(Bundle bundle)
{
TabLayoutResource = Resource.Layout.Tabbar;
ToolbarResource = Resource.Layout.Toolbar;
base.OnCreate(bundle);
global::Xamarin.Forms.Forms.Init(this, bundle);
LoadApplication(new App());
Window.SetSoftInputMode(Android.Views.SoftInput.AdjustResize);
} } |
Please refer the below link for this
https://help.syncfusion.com/xamarin/autocomplete/dealing-with-suggestion-box Please check with the above and let us know the reported issue resolved or not.
Regards,
Jeya K