My Navigation bar keeps going out of focus once my keyboard is enabled. Looking for a solution that can keep it in focus even when the keyboard is in focus.
CodePudding user response:
Try adding this
[Activity(WindowSoftInputMode = SoftInput.AdjustResize)]
in your class attribute.
Or you can do experiment with different enums of the SoftInput to meet your requirement.