[
https://issues.apache.org/jira/browse/FLEX-34632?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14227738#comment-14227738
]
Erik de Bruin commented on FLEX-34632:
--------------------------------------
You are reaching everyone who is watching JIRA and/or subscribed to the
'[email protected]' mailing list. If no one responds, it probably means
that none of the volunteers that contribute to the Apache Flex project have of
their free time to spare to look at this.
Have you tried to reproduce this on other devices, or is this specific to the
one you mentioned? Do you have a workaround?
Please be patient, and don't be surprised when it turns out that none of the
volunteers can work on this in the short term.
> Android spark Textarea and spark.skins.mobile.TextAreaSkin : 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: Mobile: Text, Spark: TextArea
> Affects Versions: Apache Flex 4.13.0
> Environment: Android Nexus 5 Air 15
> Reporter: pol poggi
> Attachments: screenshot-1.png
>
> Original Estimate: 10.2h
> Remaining Estimate: 10.2h
>
> Hello,
> On my Nexus 5, the text overlaps in a spark Textarea with
> spark.skins.mobile.TextAreaSkin 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)