There must be a way to handle this since the keyboard widget has no 'ok', 'done', or 'continue' button. How would I handle focus when there are multiple components on the page?
For the below example, I give focus to the keyboard,
but can never access the button group below it.
Here is the XML:
<LayoutGroup
id = "buttonLayoutGroup"
horizAlignment = "center"
vertAlignment = "center"
layoutDirection = "vert"
translation="[640,360]">
<Keyboard id = "exampleKeyboard" />
<ButtonGroup
id="buttonGroup"
translation="[200,500]" >
<Button
text="Change Email Address"
focusedTextColor="0xFFFFFF"
focusBitmapUri="pkg:/images/va_button.9.png"
iconUri="pkg:/images/empty_small.png"
focusedIconUri="pkg:/images/empty_small.png"
showFocusFootprint="true"
/>
<Button
text="Back"
focusedTextColor="0xFFFFFF"
focusBitmapUri="pkg:/images/va_button.9.png"
iconUri="pkg:/images/empty_small.png"
focusedIconUri="pkg:/images/empty_small.png"
showFocusFootprint="true"
/>
</ButtonGroup>
</LayoutGroup>