You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flex.apache.org by "pol poggi (JIRA)" <ji...@apache.org> on 2014/11/10 23:42:36 UTC

[jira] [Issue Comment Deleted] (FLEX-34632) Android spark Textarea and spark.skins.mobile.TextAreaSkin : text overlaps near line 750 and after

     [ https://issues.apache.org/jira/browse/FLEX-34632?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

pol poggi updated FLEX-34632:
-----------------------------
    Comment: was deleted

(was: Screenshot)

> 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: .Unspecified - Mobile
>         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)