Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Later
-
Adobe Flex SDK Previous
-
None
-
None
-
Affected OS(s): Apple IOS
Language Found: English
Description
Steps to reproduce:
1. Create a new Flex Mobile project with this View:
<?xml version="1.0" encoding="utf-8"?>
<s:View
xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
title="Edit Expense">
<s:Scroller width="100%" height="100%">
<s:VGroup paddingTop="5" gap="20">
<s:HGroup width="100%" paddingRight="20" paddingTop="5" verticalAlign="middle">
<s:Label text="Total"/>
<s:TextInput width="100%" restrict="0-9.$"/>
</s:HGroup>
<s:HGroup width="100%" paddingRight="20" verticalAlign="middle">
<s:Label text="Expense Date"/>
<s:TextInput width="100%"/>
</s:HGroup>
<s:Rect width="100%" height="800">
<s:fill>
<s:SolidColor color="red"/>
</s:fill>
</s:Rect>
</s:VGroup>
</s:Scroller>
</s:View>
2. Press on the Total text input to bring up the soft keyboard
3. Throw scroll down the view
Actual Results:
The ActionBar bounces out and back into view
Expected Results:
The ActionBar to stay put at the top of the application
Workaround (if any):