创建弹出窗口的图片展示

本帖最后由 oisweb 于 2009-11-24 14:11 编辑





图片有点大了 显示不是很好 自己看着办吧
1 创建工程 设置页面属性

<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical"
     horizontalAlign="center"  verticalAlign="middle" >

2 创建xml文件 读取图片

<?xml version="1.0"?>
<gallery>

    <movie>
            <pic>1.jpg</pic>
            <title>腾焰飞芒</title>
            <date>腾焰飞芒</date>
    </movie>
    
    <movie>
            <pic>2.jpg</pic>
            <title>凌波微步</title>
            <date>凌波微步</date>
    </movie>


    <movie>
            <pic>3.jpg</pic>
            <title>飞侠失足</title>
            <date>飞侠失足</date>
    </movie>
    
        <movie>
            <pic>4.jpg</pic>
            <title>得失寸心知</title>
            <date>得失寸心知</date>
    </movie>
    
    <movie>
            <pic>5.jpg</pic>
            <title>直冲云霄</title>
            <date>直冲云霄</date>
    </movie>


    <movie>
            <pic>6.jpg</pic>
            <title>势不可挡</title>
            <date>势不可挡</date>
    </movie>   
    
     <movie>
            <pic>7.jpg</pic>
            <title>鹰击长空</title>
            <date>鹰击长空</date>
    </movie>
    
    <movie>
            <pic>8.jpg</pic>
            <title>凝神聚气</title>
            <date>凝神聚气</date>
    </movie>


    <movie>
            <pic>9.jpg</pic>
            <title>风激电飞</title>
            <date>风激电飞</date>
    </movie>    
    
    <movie>
            <pic>10.jpg</pic>
            <title>百万吨暴扣</title>
            <date>百万吨暴扣</date>
    </movie>
    
    <movie>
            <pic>11.jpg</pic>
            <title>虎视眈眈</title>
            <date>虎视眈眈</date>
    </movie>


    <movie>
            <pic>12.jpg</pic>
            <title>一意专心</title>
            <date>一意专心</date>
    </movie>
</gallery>

3 创建图片文件夹 images 放要展示的图片
4 加入<mx:HTTPService id="service" url="images.xml" result="serviceHandler(event)"/>
5好 开始写代码把 先as吧
<mx:Script>
        <![CDATA[
            import mx.collections.ArrayCollection;
            import mx.rpc.events.ResultEvent;

            [Bindable]
            private var movies:ArrayCollection;

            private function serviceHandler(event:ResultEvent):void{
                movies = event.result.gallery.movie;
            }

        ]]>
</mx:Script>


6 读取xml数据 我们需要呼叫httpservice

头顶加入send()方法
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical"
     horizontalAlign="center"  verticalAlign="middle"
     creationComplete="service.send()" >

7 缩略图展示我们用TileList组件 

<mx:TileList id="moviesList" dataProvider="{movies}"
        direction="horizontal"
        width="800" height="450" rowHeight="150" columnWidth="200">
        <mx:itemRenderer>
            <mx:Component>
                <mx:VBox horizontalAlign="center" verticalAlign="middle">
                    <mx:Image source="images/thumbs/{data.pic}"/>
                    <mxabel text="{data.date}" />
                </mx:VBox>
            </mx:Component>
        </mx:itemRenderer>
    </mx:TileList>

8 有了缩略图 我们要最终显示大图片 我们建一个自定义组件mx:TitleWindow
<?xml version="1.0" encoding="utf-8"?>
<mx:TitleWindow xmlns:mx="http://www.adobe.com/2006/mxml"
        layout="vertical" width="400" height="520"
        horizontalAlign="center"
        showCloseButton="true"
        close="closeWindow(event);" >

        <mx:Script>
                <![CDATA[

                        import mx.events.CloseEvent;
                        import mx.managers.PopUpManager;

                        [Bindable]
                        public var sourceImage:String;

                        private function closeWindow(e:CloseEvent):void {
                                PopUpManager.removePopUp(this);
                        }

                ]]>
        </mx:Script>

        <mx:Image source="{sourceImage}"/>

</mx:TitleWindow>
9 同时为使弹出窗口更加得心应手,我们希望能够关闭它 ,只是上按一下。为此,我们要派出一个click事件侦听CloseEvent。
<mx:TileList id="moviesList" dataProvider="{movies}"
        direction="horizontal"
        width="800" height="450" rowHeight="150" columnWidth="200"
        click="launchPopUp(event)">
10 返回主文件增加点击事件
<mx:TileList id="moviesList" dataProvider="{movies}"
        direction="horizontal"
        width="800" height="450" rowHeight="150" columnWidth="200"
        click="launchPopUp(event)">

11 增加

private function launchPopUp(e:MouseEvent):void {
        if(moviesList.selectedItem){
              var win : Window = new Window();
              win.sourceImage = "images/"+moviesList.selectedItem.pic;
              win.title =  moviesList.selectedItem.title;
              PopUpManager.addPopUp(win,this,true);
              PopUpManager.centerPopUp(win);
        }
}

12 ok !具体看最终代码吧 图片文件夹内容自己加吧 给出三个文件

Main.mxml

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" 
     horizontalAlign="center"  verticalAlign="middle"
     creationComplete="service.send()" viewSourceURL="srcview/index.html">
    
    <mx:Style>   
            global{
                         modalTransparency : .8;
                        modalTransparencyColor : #000000;
                 }    
                 Application{
                          backgroundGradientColors: #ffffff, #ffffff;
                           backgroundGradientAlphas: 1, 1;
                 } 
        TileList{
            selectionColor:  #717070;
            rollOverColor: #CCCCCC;
            borderStyle : none;
        }
        TitleWindow{
                         borderColor : #C1C1C1;
                         borderAlpha : .8;
                         fontSize : 14;
                         fontFamily :Georgia;
                         fontWeight : bold ;
                         color : #FFFFFF;
                 }
                 Label{
                         color : #000000;
                         fontStyle : italic; 
                 }
    </mx:Style>
    
    <mx:Script>
        <![CDATA[
            import mx.collections.ArrayCollection;
            import mx.rpc.events.ResultEvent;
            import mx.managers.PopUpManager;
            
            [Bindable]
            private var movies:ArrayCollection;
            
            private function serviceHandler(event:ResultEvent):void{
                movies = event.result.gallery.movie;
            }
            
            private function launchPopUp(e:MouseEvent):void {
                                if(moviesList.selectedItem){
                                        var win : Window = new Window();
                                        win.sourceImage = "images/"+moviesList.selectedItem.pic;
                                        win.title =  moviesList.selectedItem.title;
                                        PopUpManager.addPopUp(win,this,true);
                                        PopUpManager.centerPopUp(win);
                                }
                        }
            
        ]]>
    </mx:Script>

    <mx:HTTPService id="service" url="images.xml" result="serviceHandler(event)"/>
    <mx:TileList id="moviesList" dataProvider="{movies}" 
        direction="horizontal"
        width="100%" height="100%" rowHeight="250" columnWidth="200"
        click="launchPopUp(event)">
        <mx:itemRenderer>
            <mx:Component>
                <mx:VBox horizontalAlign="center" verticalAlign="middle">
                    <mx:Image source="images/thumbs/{data.pic}"/>
                    <mxabel text="{data.date}" />
                </mx:VBox>
            </mx:Component>
        </mx:itemRenderer>
    </mx:TileList>
   
</mx:Application>

images.xml

<?xml version="1.0"?>
<gallery>

    <movie>
            <pic>1.jpg</pic>
            <title>腾焰飞芒</title>
            <date>腾焰飞芒</date>
    </movie>
    
    <movie>
            <pic>2.jpg</pic>
            <title>凌波微步</title>
            <date>凌波微步</date>
    </movie>


    <movie>
            <pic>3.jpg</pic>
            <title>飞侠失足</title>
            <date>飞侠失足</date>
    </movie>
    
        <movie>
            <pic>4.jpg</pic>
            <title>得失寸心知</title>
            <date>得失寸心知</date>
    </movie>
    
    <movie>
            <pic>5.jpg</pic>
            <title>直冲云霄</title>
            <date>直冲云霄</date>
    </movie>


    <movie>
            <pic>6.jpg</pic>
            <title>势不可挡</title>
            <date>势不可挡</date>
    </movie>   
    
     <movie>
            <pic>7.jpg</pic>
            <title>鹰击长空</title>
            <date>鹰击长空</date>
    </movie>
    
    <movie>
            <pic>8.jpg</pic>
            <title>凝神聚气</title>
            <date>凝神聚气</date>
    </movie>


    <movie>
            <pic>9.jpg</pic>
            <title>风激电飞</title>
            <date>风激电飞</date>
    </movie>    
    
    <movie>
            <pic>10.jpg</pic>
            <title>百万吨暴扣</title>
            <date>百万吨暴扣</date>
    </movie>
    
    <movie>
            <pic>11.jpg</pic>
            <title>虎视眈眈</title>
            <date>虎视眈眈</date>
    </movie>


    <movie>
            <pic>12.jpg</pic>
            <title>一意专心</title>
            <date>一意专心</date>
    </movie>
</gallery>

Window.mxml

<?xml version="1.0" encoding="utf-8"?>
<mx:TitleWindow xmlns:mx="http://www.adobe.com/2006/mxml" 
        layout="absolute" width="100%" height="100%"
        horizontalAlign="left"
        showCloseButton="true"
        close="closeWindow(event);" 
        click="dispatchEvent(new CloseEvent(CloseEvent.CLOSE));">
        
        <mx:Script>
                <![CDATA[
                
                        import mx.events.CloseEvent;
                        import mx.managers.PopUpManager;
                        
                        [Bindable]
                        public var sourceImage:String;
                        
                        private function closeWindow(e:CloseEvent):void {
                                PopUpManager.removePopUp(this);
                        }
                        
                ]]>
        </mx:Script>
        
        <mx:Image source="{sourceImage}"/>
        
</mx:TitleWindow>

转载于:https://www.cnblogs.com/programmer-wind/archive/2012/02/22/2919554.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/404427.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

国内常用NTP服务器地址及IP

From: http://www.douban.com/note/171309770/ 时间服务器默认的端口号是&#xff1a;123&#xff0c;协议为UDP 210.72.145.44 (国家授时中心服务器IP地址) 133.100.11.8 日本 福冈大学 time-a.nist.gov 129.6.15.28 NIST, Gaithersburg, Maryland time-b.nist.gov 129.6.1…

[react] 受控组件和非受控组件有什么区别?

[react] 受控组件和非受控组件有什么区别&#xff1f; 受控组件用value和组件的state绑定&#xff0c;当value更新时&#xff0c;会自动更新state 非受控组件没有value&#xff0c;采用ref直接操作dom 个人简介 我是歌谣&#xff0c;欢迎和大家一起交流前后端知识。放弃很容…

Core Data 多线程操作实战篇

最近在解决百度音乐iPhone客户端偶现数据库操作crash的问题&#xff0c;顺手整理了下CoreData的多线程原则&#xff0c;以及实际开发时应该如何遵守这些原则。 Core Data多线程操作的基本原则 不允许跨线程访问MOC&#xff1a; 在某一个MOC上的CRUD操作只能在它的操作线程上进行…

分布式系统和元数据

------俗解&#xff1a;---------------------------------------------------- 什么是分布式系统&#xff1a; 1&#xff1a;通俗点说分布式系统就是能把服务器端程序分开部署到多台机器上。 2&#xff1a;跟分层毫无关系, 跟它容易搞混的是集群 分布式就是把一个系统分布在不…

移植gdb到DM368 IPNC中 linux arm gdb

From: http://blog.csdn.net/ghostyu/article/details/8081897 移植gdb到嵌入式的ipnc中&#xff0c;大多数人习惯使用printf调试&#xff0c;但是遇到像”segment fault“这的错误也是后就很难定位&#xff0c;这时候gdb的作用就体现出来了 在pc使用gdb调试应用程序前&…

[react] react是哪个公司开发的

[react] react是哪个公司开发的 facebook 个人简介 我是歌谣&#xff0c;欢迎和大家一起交流前后端知识。放弃很容易&#xff0c; 但坚持一定很酷。欢迎大家一起讨论 主目录 与歌谣一起通关前端面试题

Silverlight实用窍门系列:56.Silverlight中的Binding使用(一)【附带实例源码】

本文将详细讲述Silverlight中Binding&#xff0c;包括Binding的属性和用法&#xff0c;Binding的数据流向。 Binding:一个完整的Binding过程是让源对象中的某个属性值通过一定流向规则进行转换和验证之后绑定到目标对象的某个属性上面。这个源对象由ElementName指定&#xff0c…

linux下如何产生core,调试core

From: http://blog.163.com/redhumor126/blog/static/19554784201131791239753/ 在程序不寻常退出时&#xff0c;内核会在当前工作目录下生成一个core文件&#xff08;是一个内存映像&#xff0c;同时加上调试信息&#xff09;。使用gdb来查看core文件&#xff0c;可以指示出…

[react] react中怎样阻止组件渲染?

[react] react中怎样阻止组件渲染&#xff1f; class组件 使用shouldComponentUpdate生命周期&#xff0c;return false继承React.PureComponent只要prop没有改变(浅比较)&#xff0c;就不会执行render函数 函数式组件 使用React.memo包裹组件函数&#xff0c;props没有改变就…

嵌套滚动demo

https://github.com/luv135/NestedScrollingDemo https://github.com/ggajews/nestedscrollingchildviewdemo ViewParentCompat是一个和父view交互的兼容类&#xff0c;它会判断api version&#xff0c;如果在Lollipop以上&#xff0c;就是用view自带的方法&#xff0c;否则判断…

jqGrid + JSON + WebService 完整示例

真没找到这样的例子&#xff0c;于是自已写了个&#xff0c;分享出来。 第一步&#xff0c;首先在WebService上&#xff0c;添加[System.Web.Script.Services.ScriptService]属性标签&#xff0c;让WebServer支持JSON. namespace jqGrid_JSON_WebService_Sample.Services{/// &…

[react] 在react中页面重新加载时怎样保留数据?

[react] 在react中页面重新加载时怎样保留数据&#xff1f; 使用浏览器localstorage来保存应用程序的状态 个人简介 我是歌谣&#xff0c;欢迎和大家一起交流前后端知识。放弃很容易&#xff0c; 但坚持一定很酷。欢迎大家一起讨论 主目录 与歌谣一起通关前端面试题

Sublime Text 3 代码格式化插件推荐 CodeFormatter

CodeFormatter CodeFormatter has support for the following languages: * PHP - By PHP_Beautifier* JavaScript/JSON - By JSBeautifier* HTML - By JSBeautifier* CSS - By JSBeautifier* Python - By PythonTidy (only ST2) 支持&#xff0c;php,js,html,css 默认快捷键 …

[react-router] React-Router 4中<Router>组件有几种类型?

[react-router] React-Router 4中<Router>组件有几种类型&#xff1f; HashRouter&#xff1a;老浏览器的history,主要通过hash来实现&#xff0c;对应createHashHistory()BrowserRouter&#xff1a;高版本浏览器,通过html5里面的history&#xff0c;对应createBrowserH…

交叉编译和交叉调试环境搭建及使用

From: http://blog.chinaunix.net/uid-25119314-id-226230.html 1. 交叉编译器 1.1 交叉编译器介绍 在一种计算机环境中运行的编译程序&#xff0c;能编译出在另外一种环境下运行的代码&#xff0c;我们就称这种编译器支持交叉编译。这个编译过程就叫交叉编译。简单地说&…

struts2文件上传中,如何限制上传的文件类型

这个在struts2的doc中已经有所说明&#xff0c;但是说得并不详细,而且他给的例子是有错误的&#xff0c;下面我将列出文件上传并限制类型的具体步骤struts2版本是2.1.6struts2是根据contentType来限制的&#xff0c;并不是文件的扩展名比如我想仅上传image/png,image/gif,image…

CGContextRef CIImageRef详解

第一种 先用UIImage对象加载一张图片 然后转化成CGImageRef放到CGContext中去编辑 第二种 用CGImageCreate函数创建CGImageRef 然后把CGImageRef放到CGContext中去编辑 第三种 用CGImageCreateCopy 或者 CGImageCreateCopyWithColorSpace 函数拷贝 CGImageRef CGImageCreate ( …

[react] react怎么拿到组件对应的DOM元素?

[react] react怎么拿到组件对应的DOM元素&#xff1f; 在Class组件中 import React from react; class CComponent extends React.Component {refDiv React.createRef();componentDidMount () {console.log(this.refDiv.current)}render () {return <div><div class…

linux缩小lv发生文件系统错误

众所周知&#xff0c;linux lvm 扩大lv是先扩大lv&#xff0c;然后再扩大文件系统&#xff0c;所以有的人就认为缩小lv也是先缩小lv,再缩小文件系统&#xff0c;当然博主刚开始也那么认为&#xff0c;导致lvresize 以后&#xff0c;lv的大小小于文件系统大小而无法挂载&#xf…

Fedora12上编译安装gdb-7.2

在Fedora12上编译安装gdb-7.2&#xff1a;编译安装gdb和gdbserver 1. 下载gdb7.2: ftp://sourceware.org/pub/gdb/releases/gdb-7.2a.tar.bz2 2. 编译安装gdb 2.1 解压&#xff1a; [zcm~ #1]$cd /mnt/hgfs/opensource/ [zcmopensource #2]$ls a52dec ffmpeg-1.2…