做Flex Mobile开发的人应该知道,Flex为手机应用并没有提供弹出框组件,需要自定义。

通过查找文档、资料,我做出一个效果还算不错的弹出框组件,可以适用于手机设备上,不多讲,直接贴源码,相信对Flex了解的人都可以一看就懂。

首先,需要MXML定义弹出框组件:

<s:SkinnablePopUpContainer xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:itemrenderer="com.adobe.mobilecrud.view.itemrenderer.*"
width="{screenX * 0.75}" height="{screenY * 0.25}" backgroundAlpha="0"
creationComplete="CenterPopUp()"
preinitialize="screen_initializeHandler(event)"> <fx:Script>
<![CDATA[
import mx.core.FlexGlobals;
import mx.events.FlexEvent; [Bindable]
public var title:String = "";
[Bindable]
public var message:String = ""; [Bindable]
private var screenX:Number;
[Bindable]
private var screenY:Number; // 使应用程序居中
private function CenterPopUp():void{
this.x = FlexGlobals.topLevelApplication.width / 2 - this.width / 2;
this.y = FlexGlobals.topLevelApplication.height / 2 - this.height / 2; }
// 初始化窗口大小
protected function screen_initializeHandler(event:FlexEvent):void
{
screenX = Capabilities.screenResolutionX;
trace("screenX:"+screenX);
screenY = Capabilities.screenResolutionY;
} ]]>
</fx:Script> <s:Rect width="100%" height="100%" radiusX="10" radiusY="10">
<s:stroke>
<s:SolidColorStroke color="#C2C6C3" weight="1"/>
</s:stroke>
<s:fill>
<s:SolidColor alpha="1.0" color="white"/>
</s:fill>
</s:Rect> <s:VGroup width="100%" height="100%" gap="0" paddingTop="1">
<s:Group width="100%" height="50">
<s:Rect width="100%" height="100%" radiusX="10" radiusY="10">
<s:fill>
<s:LinearGradient rotation="90">
<s:entries>
<s:GradientEntry color="#f9f8f6" ratio="0.00"/>
<s:GradientEntry color="#e3dfd7" ratio="0.60"/>
<s:GradientEntry color="#f7f6f2" ratio="1.00"/>
</s:entries>
</s:LinearGradient>
</s:fill>
</s:Rect>
<s:HGroup width="100%" height="100%" verticalAlign="middle">
<s:Image source="@Embed('assets/alert/w1.png')"/>
<s:Label color="#EE9F29" fontSize="30" fontWeight="bold" text="{title}"/>
</s:HGroup>
</s:Group> <s:Line width="100%">
<s:stroke>
<s:LinearGradientStroke caps="round" weight="1">
<s:entries>
<s:GradientEntry color="#c2bfad" ratio="0.5"/>
</s:entries>
</s:LinearGradientStroke>
</s:stroke>
</s:Line> <s:VGroup width="100%" height="50%" horizontalAlign="center" verticalAlign="middle">
<s:Label width="92%" height="100%" color="#5a5a5a" fontSize="25" lineBreak="toFit"
maxDisplayedLines="2" text="{message}" textAlign="center"
verticalAlign="middle"/>
</s:VGroup> <s:HGroup width="100%" color="#5a5a5a" fontSize="18" horizontalAlign="center">
<s:VGroup width="50%" horizontalAlign="center">
<s:Button id="btnOk" width="100" height="40" label="确 定" chromeColor="#e3dfd7"/>
</s:VGroup> <s:VGroup width="50%" horizontalAlign="center">
<s:Button id="btnCancel" width="100" height="40" label="取 消" chromeColor="#e3dfd7"/>
</s:VGroup> </s:HGroup>
</s:VGroup>
</s:SkinnablePopUpContainer>

组件定义成功后,我们可以写一个as文件,拿它来调用mxml文件:

package alert
{
import flash.display.DisplayObjectContainer;
import flash.events.MouseEvent; import mx.core.FlexGlobals; import spark.components.View;
import spark.events.PopUpEvent; public class Confirm
{
private static var confirm:Confirm = null; private var confirmView:AlertConfirmView = new AlertConfirmView(); private var closeHandler:Function = null; public static function getInstance():Confirm{
if(confirm == null){
confirm = new Confirm();
} return confirm;
} public function show(owner:DisplayObjectContainer,text:String = '',title:String = '', closeHandler:Function = null):void{
confirmView.title = title;
confirmView.message = text; confirmView.open(owner,true); if(closeHandler != null){
this.closeHandler = closeHandler;
//confirmView.addEventListener(PopUpEvent.CLOSE,closeHandler);
}else{ } confirmView.btnOk.addEventListener(MouseEvent.CLICK,btnClose_clickHandler);
confirmView.btnCancel.addEventListener(MouseEvent.CLICK,btnClose_clickHandler);
} // 处理按钮监听事件
protected function btnClose_clickHandler(event:MouseEvent):void
{
confirmView.btnOk.removeEventListener(MouseEvent.CLICK,btnClose_clickHandler);
confirmView.btnCancel.removeEventListener(MouseEvent.CLICK,btnClose_clickHandler); trace(event.currentTarget.id); if(event.currentTarget.id == 'btnOk'){
confirmView.addEventListener(PopUpEvent.CLOSE,closeHandler);
trace("YES");
}else{
trace("NO");
} confirmView.close();
}
// 取消PopUp监听
public function cancelMonitor():void{
confirmView.removeEventListener(PopUpEvent.CLOSE,closeHandler);
} }
}

其实,内容很简单,关于这方面的资料网上也是有一些的,但尽善尽美的东西却很少,我写的这个也算不得很完美,不过已经很实用了。

源代码下载地址:http://download.csdn.net/detail/zuiwuyuan/8020273

Flex AIR自定义Mobile的弹出框组件的更多相关文章

  1. 关于隐式创建vue实例实现简化弹出框组件显示步骤

    我们在使用vue写alert组件的时候,经常是定义了一个alert.vue,然后引入alert.vue,然后配置参数等等,非常繁琐,那有没有一种方式可以像window.alert("内容&q ...

  2. 基于Vue.js PC桌面端弹出框组件|vue自定义弹层组件|vue模态框

    vue.js构建的轻量级PC网页端交互式弹层组件VLayer. 前段时间有分享过一个vue移动端弹窗组件,今天给大家分享一个最近开发的vue pc端弹出层组件. VLayer 一款集Alert.Dia ...

  3. 自定义Bootstrap样式弹出框

    最近做的一些功能需要用到Bootstrap,然而原来的系统并没有引入Bootstrap,为了新写的控件能够应用于老的页面,又不需要在老的页面上引入全套的Bootstrap文件决定写一个模仿Bootst ...

  4. co-dialog弹出框组件-版本v2.0.1

    具体案例查看co-dialog:https://koringz.github.io/co-dialog/index.html 2.0.1版本优化项,代码压缩,修复PC和移动端自适应,修复显示弹出框浏览 ...

  5. co-dialog弹出框组件-版本v2.0.0

    co-dialog theme 访问git:co-dialog 版本v2.0.0 主题2 coog.app('.theme2').use({ title: 'JUST CHECKING.', mess ...

  6. ReactNative: 使用弹出框组件ActionSheetIOS组件

    一.简介 在上一篇文章中,详细介绍了对话框组件,除此之外,React-Native系统还给开发者提供了一个弹框框组件ActionSheetIOS组件,它的弹出方式与对框框不同,它是从底部弹出,与iOS ...

  7. 安卓开发之自定义一个view弹出框

    https://www.cnblogs.com/muyuge/p/6152167.html

  8. android自定义弹出框样式实现

    前言: 做项目时,感觉Android自带的弹出框样式比较丑,很多应用都是自己做的弹出框,这里也试着自己做了一个. 废话不说先上图片: 实现机制 1.先自定义一个弹出框的样式 2.自己实现CustomD ...

  9. UIPresentationController - iOS自定义模态弹出框

    参考: https://developer.apple.com/library/archive/featuredarticles/ViewControllerPGforiPhoneOS/Definin ...

随机推荐

  1. 数据库---JDBC的解析

    一.JDBC是什么? JDBC:Java Database Connectivity(Java数据库连接池).指定了统一的访问各种关系型数据库的标准接口-----桥梁作用.  功能:[与数据库建立连接 ...

  2. Idea下面无法识别web-inf下lib目录的子目录的jar包,只能直接放lib下面才能识别?

    解决方案一: Ctrl+Alt+Shift+s打开projuect Structure-->Livraries-->➕-->java-->选择对应的lib目录即可! 解决方案二 ...

  3. 【JZOJ4771】【NOIP2016提高A组模拟9.9】爬山

    题目描述 国家一级爬山运动员h10今天获得了一张有着密密麻麻标记的地图,在好奇心的驱使下,他又踏上了去爬山的路. 对于爬山,h10有一个原则,那就是不走回头路,于是他把地图上的所有边都标记成了有向边. ...

  4. Spring → 03:核心机制

    一.控制反转 1.1.控制反转的概念 (1).Inverse of Controller被称为控制反转或反向控制,其实真正体现的是“控制转移”.(2).所谓的控制指的是负责对象关系的指定.对象创建.初 ...

  5. python 数据分析领域常用的包

  6. 使用PHP类TCPDF生成PDF文档

    转自:http://www.blhere.com/1180.html 这两天遇到一个项目中,需要php自动处理生成pdf文档.在网上找了好几个类,最后决定使用TCPDF,使用的时候真是发现这个类真是强 ...

  7. 【Django入坑之路】Django与Query Ajax的交互

    1:Jquery.ajax后端交互数据 $.ajax({ Url: /路由处理/, Type: GET/POST, #传送请求类型 Data: {user: “ XXXX”,pass:”XXXX”}, ...

  8. Python学习之路11☞异常处理

    一 错误和异常 part1:程序中难免出现错误,而错误分成两种 1.语法错误(这种错误,根本过不了python解释器的语法检测,必须在程序执行前就改正) #语法错误示范一 if #语法错误示范二 de ...

  9. @bzoj - 4298@ [ONTAK2015]Bajtocja

    目录 @description@ @solution@ @accepted code@ @details@ @description@ 给定d张无向图,每张图都有n个点.一开始,在任何一张图中都没有任 ...

  10. 《spring boot》8.2章学习时无法正常启动,报“ORA-00942: 表或视图不存在 ”

    在学习<spring boot>一书的过程中,由于原书作者难免有一些遗漏的的地方,或者系统.软件版本不一致.框架更新等各种因素,完全安装书中源码页不能实现项目的正常启动 在8.2章节,演示 ...