Flex/AS3 Drag Drop - Custom Drop Feedback

匿名 (未验证) 提交于 2019-12-03 03:04:01

问题:

I am using a HorizontalList component to display a list of images, you can drag images from another component to join the list, this all works fine.

If I do list.showDropFeedback(event) I get an unsightly black bar at the top of images in the HorizontalList - what I really want is a line to the left/right of the image, where the new one will actually sit.

I guess I need to define a custom DropFeedback to override the default. Does anyone know if there there is a way to achieve this?

Thanks!

回答1:

Yuo can sove it by overriding showDropFeedback() method. My code below:

    import mx.controls.HorizontalList; import mx.controls.listClasses.IListItemRenderer; import mx.core.mx_internal; import mx.events.DragEvent;  use namespace mx_internal;  public class HList extends HorizontalList {     public function HList()     {         super();                             }              override public function showDropFeedback(event:DragEvent):void         {             super.showDropFeedback(event);              dropIndicator.setActualSize(rowHeight - 4, 4);             DisplayObject(dropIndicator).rotation = 90;          }    } 


回答2:

I solved this eventually by adding the following in my Application style..

HorizontalList {  dropIndicatorSkin: ClassReference("com.package.HorizontalListDropIndicator"); }  

And creating my custom skin..

package com.package {   import flash.display.Graphics;  import mx.skins.ProgrammaticSkin;   public class HorizontalListDropIndicator extends ProgrammaticSkin {    public function HorizontalListDropIndicator() {    super();   }    override protected function updateDisplayList(w:Number, h:Number):void {      super.updateDisplayList(w, h);     var g:Graphics = graphics;     g.clear();    g.lineStyle(2, 0xFF0000);     g.moveTo(0, 0);    g.lineTo(0, 250);    }  } } 


回答3:

It looks like this is a bug in the Flex Framework:

Flex Builder 3/sdks/3.3.0/frameworks/projects/framework/src/mx/controls/HorizontalList.as (lines 95-105)

public function HorizontalList() {     super();      _horizontalScrollPolicy = ScrollPolicy.AUTO;     _verticalScrollPolicy = ScrollPolicy.OFF;      direction = TileBaseDirection.VERTICAL;     maxRows = 1;     defaultRowCount = 1; } 

Notice that the constructor for HorizontalList is initializing the direction value to Vertical.

A quick and easy work-around is to simply specify direction="horizontal" in your MXML:

<mx:HorizontalList id="fooLst" direction="horizontal" dataProvider="{foo}" /> 

I would be surprised if this bug hasn't already been fixed (and waiting for the next release), but I will check the Flex SDK bug database and submit a report if it's not documented.



回答4:

There is a style property called dropIndicatorSkin that controls the look of the line that is shown when you drag over a list based component. From the adobe docs:

dropIndicatorSkin

The skin to use to indicate where a dragged item can be dropped. When a ListBase-derived component is a potential drop target in a drag-and-drop operation, a call to the showDropFeedback() method makes an instance of this class and positions it one pixel above the itemRenderer for the item where, if the drop occurs, is the item after the dropped item. The default value is mx.controls.listClasses.ListDropIndicator.

All of the functionality is built into the HorizontalList to do what you're asking, but there seems to be a bug in the HorizontalList in which it does not set its direction property to horizontal.

All you need to do is put direction="horizontal" in the mxml declaration and it will rotate the dropIndicatorSkin 90 degrees and poistion it in between the items instead of above them:

<mx:HorizontalList ... direction="horizontal" ... /> 


回答5:

Thanks, this seems to rotate the dropIndicator as expected but produces other very unexpected behaviour. The horizontal scroll bar on the list suddenly disappears and dragging an item onto the list makes it skip straight to the end.... Feel's like I'm almost there, but not quite!

My AS3 code....

// in constructor... (extends HorizontalList) this.direction = "horizontal";  this.addEventListener(DragEvent.DRAG_ENTER, onDragEnter); this.addEventListener(DragEvent.DRAG_OVER, onDragOver); this.addEventListener(DragEvent.DRAG_EXIT, onDragExit); this.addEventListener(DragEvent.DRAG_DROP, onDragDrop);  private function onDragEnter(event:DragEvent):void {     event.preventDefault();     if (event.dragSource.hasFormat("treeItems") || event.dragSource.hasFormat("items")) {         DragManager.acceptDragDrop(event.target as UIComponent);     }     this.showDropFeedback(event); }  public function onDragOver(event:DragEvent):void {     event.preventDefault();     this.showDropFeedback(event); }  public function onDragExit(event:DragEvent):void {     event.preventDefault();     this.showDropFeedback(event); }  private function onDragDrop(event:DragEvent):void {     event.preventDefault();     this.hideDropFeedback(event);     //.... } 


标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!