Home > Software engineering >  How to make Sure Keyboard is not placed over an Entry when it is focused in Xamarin?
How to make Sure Keyboard is not placed over an Entry when it is focused in Xamarin?

Time:10-26

I have an Entry which is placed in a ContentView, and this ContentView is placed in a Grid. When this Entry is Focused, the Keyboard is placed over the ContentView preventing the user from seeing the Entry.

I would like to know if there is a way to determine if a View is Visible and if not make sure it is (prevent the Keyboard from being placed over it).

Any thoughts on how I could do this.

I would need this to work on iOS specifically, Android and Windows seem not to have this issue in my use-case.

CodePudding user response:

On Android platform, the official document provides Soft Keyboard Input Mode. Refer to enter image description here

  • Related