我遇到Drag& amp;下降。我无法启用Drag&放在我的名单上。
我想将列表中的项目拖到组件中。
这段代码:
<s:List id="lst_item" horizontalScrollPolicy="off" verticalScrollPolicy="off"
width="{groupDevice.width}" height="{groupDevice.height}" contentBackgroundAlpha="0.0">
<s:layout>
<s:TileLayout id="tile_layoutDevice"
requestedColumnCount="8"
horizontalGap="20"
rowHeight="230"
columnWidth="230"/>
</s:layout>
<s:itemRenderer>
<fx:Component>
<s:ItemRenderer>
<s:VGroup horizontalAlign="center" width="100%">
<s:Image source="{data.icon}"/>
<s:Label text="{data.title}" color="black"/>
</s:VGroup>
</s:ItemRenderer>
</fx:Component>
</s:itemRenderer>
</s:List>
使用此列表dragEnabled,dragMoveEnabled ...无效。
如何启用拖放功能下降? 请帮我。