锁定老帖子 主题:Flex显示图片的常用方式
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2009-07-24
最后修改:2009-07-24
第一种: 使用绑定的方式 <?xml version="1.0" encoding="utf-8"?><application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"> <script> [Bindable] </script> <image source="{s}" width="150" height="151.8" id="img"></image></application>
第二种: 直接对source指定路径 <?xml version="1.0" encoding="utf-8"?><application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationcomplete="init()"> <script> public function init():void{ </script> <image width="150" height="151.8" id="img"></image> </application>
第三种:使用Loader类 <?xml version="1.0" encoding="utf-8"?><application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationcomplete="init()"> <script> <mx:Script> </script> <image width="150" height="151.8" id="img"></image></application> 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
浏览 5951 次