2011-07-27 81 views
1

是否可以在Flex 4.5移動開發中將項目符號添加到Label中? 是這樣的:在Flex 4.5中列出項目符號

.Item 
.Item 
.Item 
+0

我不知道,如果你的「這樣的事情」看起來你預期它會的方式之前。要麼,要麼我真的不明白你正在實施的問題。 – JeffryHouser

+0

希望這個鏈接可能有幫助http://stackoverflow.com/questions/2915764/how-should-one-make-bulleted-lists-in-flex-4-given-that-marginleft-doesnt-act –

回答

0

你可以在那裏在createChildren(擴展的自定義標籤組件)添加您的圖像,並把它從標籤的左側-x並相應地調整年。

1

我把圖標標籤

<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> 
相關問題