pol poggi created FLEX-34632:
--------------------------------
Summary: Android flash.text.TextField : text overlaps near line
750 and after
Key: FLEX-34632
URL: https://issues.apache.org/jira/browse/FLEX-34632
Project: Apache Flex
Issue Type: Bug
Components: .Unspecified - Mobile
Environment: Android Nexus 5 Air 15
Reporter: pol poggi
Hello,
On my Nexus 5, the text overlaps in a flash.text.TextField near line 750 and
after (ScrollBar near 25% height)
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
creationComplete="creationCompleteHandler(event)">
<fx:Script>
<![CDATA[
import mx.events.FlexEvent;
private function creationCompleteHandler(event:FlexEvent):void
{
var urlLoader:URLLoader = new URLLoader();
var fichier:URLRequest = new
URLRequest("http://www.adobe.com/products/air.html");
urlLoader.addEventListener( Event.COMPLETE, chargementComplet );
urlLoader.load( fichier );
}
private function chargementComplet(pEvt:Event):void {
myTextField.text = pEvt.target.data;
}
private function skbAct( event:Event ):void
{
myTextField.height=800;
}
private function skbDeact( event:Event ):void
{
myTextField.height=1600;
}
]]>
</fx:Script>
<fx:Style>
@namespace s "library://ns.adobe.com/flex/spark";
s|TextArea{
skinClass: ClassReference("spark.skins.mobile.TextAreaSkin");
}
</fx:Style>
<s:TextArea width="800" height="1600" id="myTextField"
softKeyboardActivate="skbAct(event)" softKeyboardDeactivate="skbDeact(event)"/>
</s:Application>
Thanks
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)