Flex 4.5 中的列表项目符号

发布于 2024-11-26 20:07:04 字数 89 浏览 2 评论 0原文

是否可以在 Flex 4.5 移动开发中向标签添加项目符号? 像这样的东西:

.Item
.Item
.Item

Is it possible to add bullets to a Label in Flex 4.5 mobile development?
something like this:

.Item
.Item
.Item

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

美胚控场 2024-12-03 20:07:04

我在标签之前放了一个图标

<s:List dataProvider="{items}">
  <s:itemRenderer>
    <fx:Component>
      <s:IconItemRenderer iconFunction="getIcon" label="{data.name}">
        <fx:Script> 
          <![CDATA[ 
            private function getIcon(item:Object):String
            { 
              return "assets/dot.png";
            } 
          ]]> 
        </fx:Script>
      </s:IconItemRenderer>
    </fx:Component>
  </s:itemRenderer>
</s:List>

I put an icon before the label

<s:List dataProvider="{items}">
  <s:itemRenderer>
    <fx:Component>
      <s:IconItemRenderer iconFunction="getIcon" label="{data.name}">
        <fx:Script> 
          <![CDATA[ 
            private function getIcon(item:Object):String
            { 
              return "assets/dot.png";
            } 
          ]]> 
        </fx:Script>
      </s:IconItemRenderer>
    </fx:Component>
  </s:itemRenderer>
</s:List>
谷夏 2024-12-03 20:07:04

您可以扩展自定义标签组件,在 createChildren() 中添加图像并将其从标签左侧放置 -x 并相应地调整 y。

You could extend a custom label component where in the createChildren() you add your image and place it -x from the left side of the label and adjust the y accordingly.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文