Flex 4.6 hide/dismiss softkeyboard
发布时间:2020-12-15 04:23:08 所属栏目:百科 来源:网络整理
导读:For flex mobile android apps I have mimicked the intuitive ios way of tapping on the background to remove the softkeyboard as follows: import spark . components . supportClasses .* protected function application1_clickHandler ( event : Mou
For flex mobile android apps I have mimicked the intuitive ios way of tapping on the background to remove the softkeyboard as follows: import spark.components.supportClasses.* protected function application1_clickHandler(event:MouseEvent):void { if(event.target is StyleableTextField || StyleableStageText){ // ignore because came from a textInput }else{ stage.focus = null // to remove the softkeyboard } } 参考:http://stackoverflow.com/questions/8520523/flex-4-6-hide-dismiss-softkeyboard (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |