我有一个使用拖放操作的Android应用程序。我不经常使用拖放,所以我才刚刚开始了解它们是如何工作的,以及可能的含义
在我的应用程序中,每当我将组件放在目标上时,目标就有点";"闪光";,这意味着它会短暂消失,然后再次出现。
这里有一个视频链接,该应用程序处于当前阶段。
我想这是由于表单的动画。如果是,我该如何禁用它,或者阻止目标闪烁?
下面是我的代码。由于我刚开始做这个项目,所以它还很初级。
public void testDrag () {
Container containerDropTarget = new Container();
Container container = new Container(new GridLayout(5,1));
Label label = new Label("test test test test test test");
Button buttonTwo = new Button("Test");
buttonTwo.addDragOverListener(l-> {
containerDropTarget.setUIID("DialogTest");
});
containerDropTarget.setUIID("LetterHolder");
buttonTwo.setDraggable(true);
containerDropTarget.setDropTarget(true);
container.add(label).add(containerDropTarget);
form.add(container).add(buttonTwo);
form.show();
}
我没有定义UIID,所以我根据您的测试用例使用了这段代码,它工作正常。我还在投递容器上加了一个标签,这样就可以找到:
Container containerDropTarget = new Container() {
@Override
public void drop(Component dragged, int x, int y) {
super.drop(dragged, x, y);
setUIID("Container");
}
};
containerDropTarget.add(new Label("Drop Target"));
Form form = new Form("Test Drag", BoxLayout.y());
Container container = new Container(new GridLayout(5,1));
Label label = new Label("test test test test test test");
Button buttonTwo = new Button("Test");
buttonTwo.addDragOverListener(l-> {
//containerDropTarget.setUIID("DialogTest");
containerDropTarget.getAllStyles().setBgColor(0xff0000);
containerDropTarget.getAllStyles().setBgTransparency(0xff);
containerDropTarget.repaint();
});
containerDropTarget.setUIID("LetterHolder");
buttonTwo.setDraggable(true);
containerDropTarget.setDropTarget(true);
container.add(label).add(containerDropTarget);
form.add(container).add(buttonTwo);
form.show();