博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
flex 设置背景图片
阅读量:4167 次
发布时间:2019-05-26

本文共 477 字,大约阅读时间需要 1 分钟。

<s:Group x="0" y="0" height="100%" width="100%">

 <s:Rect x="0" y="0" height="100%" width="100%">
  <s:fill>
   <s:BitmapFill source="@Embed('../pic/001.jpg')"/>
  </s:fill>
 </s:Rect>
</s:Group>
已经测试,group相当于canvas,而后里面画一个矩形,在矩形里面用图片填充,也可以使用渐变色填充,如下:
<s:Rect alpha="0.5" x="0" y="0" width="100%" height="100%">
 <s:fill>
  <s:LinearGradient rotation="250">
   <s:GradientEntry color="0x222222" ratio="0"/>
   <s:GradientEntry color="0xdddddd" ratio="1"/>
  </s:LinearGradient>
 </s:fill>
</s:Rect>

转载地址:http://ixgxi.baihongyu.com/

你可能感兴趣的文章
使用Batch_Compiler把bat,cmd命令行转成exe
查看>>
使用rsa算法制作license时出现IBM JDK 公钥解密错误
查看>>
Android中引入第三方Jar包的方法(java.lang.NoClassDefFoundError解决办法)
查看>>
没有调试日志的问题 Unable to open log device ‘/dev/log/main’: No such file or directory
查看>>
调用android系统相机拍照并保存
查看>>
android intent和intent action大全
查看>>
CentOS 网络设置修改
查看>>
Centos搭建SVN服务器三步曲
查看>>
VMware-Workstation-6.5.1-126130.x86_64.bundle 安装卸载
查看>>
centos 安装 virtualbox
查看>>
CentOS下设置MySQL的root密码
查看>>
activity的切换问题(activity与栈)
查看>>
Android mdpi ldpi hdpi区别
查看>>
Android 2.0环境下的图标设计原则
查看>>
Joomla SEO优化技巧
查看>>
【自定义Joomla样式】Joomla2.5 为article添加一个cssflag字段控制页面展示时引用不同的自定义css
查看>>
解析android中隐藏与显示软键盘及不自动弹出键盘的实现方法
查看>>
在Android 中调用选择图片、视频、添加音频、录音、拍摄视频、拍照等其他的功能
查看>>
给JAR签名
查看>>
怎样用Java生成ZIP文件
查看>>