以虚线分隔List项目(drawRowBackground应用一例)
作者 佚名技术
来源 服务器技术
浏览
发布时间 2012-07-08
今天我们将通过继承List组件并重写drawRowBackground函数的方式自定义List的样式..让List的每个项目以虚线隔开~~ overrideprotectedfunctiondrawRowBackground(s:Sprite,rowIndex:int,y:Number,height:Number,color:uint,dataIndex:int):void { super.drawRowBackground(s,rowIndex,y,height,color,dataIndex); varbg:Shape=Shape(s.getChildAt(rowIndex)); //此外为了显示虚线~使用一个while来循环来模拟虚线效果~ varp:Number=0; bg.graphics.lineStyle(1,0xCCCCCC); while(p<listContent.width) { bg.graphics.moveTo(p,height-1); bg.graphics.lineTo(p+4,height-1); p+=6; } } 需要注意的一点~ <L4cd:iList alternatingItemColors="0xFFFFFF" rowHeight="25" dataProvider="{list}" labelField="label" left="10" top="10" right="10" bottom="10"/> 要触发drawRowBackground函数~必须先设置alternatingItemColors这个style~因为drawRowBackground的作用是用来画item的背景的,没有设置背景将不会触发drawRowBackground~ 源码下载:11_225933_src.rar 关键词: |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: 自定义鼠标双击事件的缺陷及改善下一篇: FLASH8新功能体验-效果—展开
关于以虚线分隔List项目(drawRowBackground应用一例)的所有评论