Sorry, the problem is edittext if for example i open activity, the screen on my android does not appear as the first show. So when i will type the word not visible on the screen
"Handling the screen size changed event
When the keyboard opens the available screen size becomes much shorter. By default if the EditText is located near the bottom of the screen, Android will "push" the whole activity and make the EditText visible. This mode is named "adjustPan" mode.
By calling IME.AddHeightChangedEvent you are changing the activity to "adjustSize" mode. In this mode the activity will not be pushed automatically. Instead the HeightChanged event will be raised when the keyboard is shown or hidden."
But you need to enable your Activity to handle this... if it is fullscreensize you may well need to do something else..