Details
-
Bug
-
Status: Closed
-
Critical
-
Resolution: Fixed
-
Adobe Flex SDK Previous
-
None
-
Affected OS(s): Google Android
Language Found: English
Description
Steps to reproduce:
1. Run the following code on android device
<fx:Declarations>
<s:Callout id="callout" contentBackgroundAppearance="none" verticalPosition="after">
<s:VGroup width="100%" height="100%" gap="8">
<s:VGroup width="100%" horizontalAlign="center"
paddingTop="20" gap="20">
<s:Label text="This is a custom alert box"/>
<s:Button label="OK" click="callout.close();"/>
</s:VGroup>
<s:Button label="Close" click="callout.close()" width="100%"/>
<s:TextInput width="100%"/>
</s:VGroup>
</s:Callout>
</fx:Declarations>
<s:VGroup top="10" left="10">
<s:TextInput id="textInput" prompt="Open Callout"
focusIn="callout.Open(textInput)"/>
</s:VGroup>
2. Select the main textinput "Open Callout" and then set focus on the textinput on the SPUC
3. Start typing any word say "hello" into this textinput
Actual Results:
Android softkeyboard pops up suggestion on a panel above the softkeyboard which hides the text field
Expected Results:
Text input should be in focus
Workaround (if any):