Posted 11 August 2025, 5:06 pm EST
My Android project is using a bluetooth keyboard for data entry. All screen navigation is handled via the arrow keys (up, down, left right), Tab key and Back Tab key. I’m able to catch the arrow and tab key presses by overriding the OnKeyDown event in the Android MainActivity (MauiAppCompatActivity). However, when the FlexGrid has focus I can catch only the Back Tab keypress. I need to catch the arrow and tab keys. How can I do that?
I want handle the arrow and tab key so I can skip read-only rows and cells in the FlexGrid when moving between cells.