Hi
I'm experiencing an issue in Xamarin.Android forms, I have an activity which has UI flags set to hide navigation. I also have a Xamarin forms page with contains a navigation drawer and in the navigation drawer content there is an Entry.
SystemUiFlags.HideNavigation
If I tap on the entry to focus, the keyboard appears but the Entry loses focus immediately while the keyboard stays open, I have to re-tap the entry to regain focus. If I close the keyboard and try again the same issue repeats.
If I remove the hide navigation flag in the activity this fixes the issue but unfortunately I need that flag so I can't just remove it.
Everything works fine if I move the Entry outside of the navigation drawer (this is not specific to Entry and I have this problem with other controls), I've tried using tab index, tab stop, input transparency etc.