我有一个几乎全屏的视图,它的底部有一个水平的recyclerview(在自定义视图中)。我正试图将元素从RecyclerView拖到页面上半部分的视图中。我试着同时听轻拍和拖拽,但大多数时候我不能让触摸监听器返回除action_down和action_cancel之外的任何内容。
一个超级烦人的事情是,如果我把断点和进入调试模式,它工作得很好。我得到动作-向下->动作-向上->动作-向下->动作-向上。有时它在第一次发射时就起作用了,但之后就不起作用了。如果我注释掉v.startdrag()行,它工作得很好,但是我没有得到阴影。
在onBindViewHolder()中,我为每个项设置了一个触摸监听器,如下所示:
tv.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent motionEvent) {
System.out.println(motionEvent.toString());
if (motionEvent.getAction() == MotionEvent.ACTION_DOWN) {
ClipData.Item item = new ClipData.Item(groupId);
String[] clipDescription = {ClipDescription.MIMETYPE_TEXT_PLAIN};
ClipData dragData = new ClipData(groupId), clipDescription, item);
View.DragShadowBuilder shadowBuilder = new DragShadow(v);
v.startDrag(dragData, shadowBuilder, v, 0); //commenting out this line lets me receive actions other than ACTION_CANCEL.
}
return true;
}
});
这是我的Dragshadow课。
private class DragShadow extends View.DragShadowBuilder {
View view;
private Point mScaleFactor;
public DragShadow(View view) {
super(view);
this.view = view;
}
@Override
public void onDrawShadow(Canvas canvas) {
canvas.scale(mScaleFactor.x / (float) getView().getWidth(),
mScaleFactor.y / (float) getView().getHeight());
getView().draw(canvas);
}
@Override
public void onProvideShadowMetrics(Point shadowSize,
Point shadowTouchPoint) {
View v = getView();
int height = v.getHeight() * 2;
int width = v.getWidth() * 2;
shadowSize.set(width, height);
mScaleFactor = shadowSize;
shadowTouchPoint.set(width / 2, height / 2);
}
}
如果我添加了一个日志语句以立即将motionevent作为ontouch中的第一行打印,则它始终是action_down紧接着action_cancel。不管我是在尝试轻敲还是拖动:
07-14 18:39:00.699 11560-11560/com.whis.mobilize I/System.out: MotionEvent { action=ACTION_DOWN, actionButton=0, id[0]=0, x[0]=67.0, y[0]=77.0, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=109050123, downTime=109050123, deviceId=4, source=0x1002 }
07-14 18:39:00.705 11560-11560/com.whis.mobilize I/System.out: MotionEvent { action=ACTION_CANCEL, actionButton=0, id[0]=0, x[0]=277.0, y[0]=1685.0, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=109050131, downTime=109050123, deviceId=4, source=0x1002 }
07-14 18:39:00.745 11560-11560/com.whis.mobilize I/ViewRootImpl: Reporting drop result: false
07-14 18:39:03.636 11560-11560/com.whis.mobilize I/System.out: MotionEvent { action=ACTION_DOWN, actionButton=0, id[0]=0, x[0]=49.0, y[0]=52.0, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=109053061, downTime=109053061, deviceId=4, source=0x1002 }
07-14 18:39:03.641 11560-11560/com.whis.mobilize I/System.out: MotionEvent { action=ACTION_CANCEL, actionButton=0, id[0]=0, x[0]=439.0, y[0]=1660.0, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=109053067, downTime=109053061, deviceId=4, source=0x1002 }
07-14 18:39:03.712 11560-11560/com.whis.mobilize I/ViewRootImpl: Reporting drop result: false
我试过添加recyclerview item监听器,到处重写ontouch(),到处添加requestDisallowInterceptTouchevent(true),到处重写onInterceptTouchevent(),但没有任何工作。
我在这里发现了其他类似的问题,但都没有答案:
Draggable View not moving, calls ACTION_DOWN then directly to ACTION_CANCEL
EditText only calling ACTION_DOWN and ACTION_CANCEL sometimes
任何帮助都将不胜感激。谢谢!
编辑
我今天早上意识到,当记录上面的触摸事件时,action_cancel来自另一个位置。触摸事件的x和y值与开始动作的x和y有很大的不同。我认为它们对应于x和y,其中拖动的阴影对应于活动。不过我还是没能修好。
我刚刚完成并添加了OntouchListeners,它返回False到我在整个层次结构中可以访问的每个视图,而这种行为仍在发生。如果我在我的活动上重写DispatchTouchEvent,事件看起来很好,因此它发生在更下面的某个嵌套位置。
我也禁用了所有的动画和拉刷新,但没有骰子。
最佳答案
据我所知,view.startDragAndDrop()
和view.startDrag()
只能在不同容器/放置区域之间拖动时使用。我认为这就是方法名更改的原因(因为它们之间没有区别)
如果您只是想拖拽ImageView
,则无需使用view.startDragAndDrop()
。为此,您只需执行以下操作:
class YourActivity: AppCompatActivity() {
private var imageWidth = 0
private var imageHeight = 0
override fun onCreate(savedInstanceState: Bundle?) {
val imageToMove = findViewById<ImageView>(R.id.your_image)
// get the size of the image, so we can adjust the touch coords later
imageToMove.post {
imageWidth = imageToMove.width
imageHeight = imageToMove.height
}
imageToMove.setOnTouchListener { view, event ->
when (event.action) {
MotionEvent.ACTION_MOVE -> {
// adjust the event coords based on size of the image
//
// the touch coords is the middle of the image, so need
// to account for that
view.x = event.rawX - (pinWidth / 2)
view.y = event.rawY - (pinHeight / 2)
}
}
}
}
}
如果试图将视图从一个视图组拖动到另一个视图组,则需要使用
view.startDragAndDrop()
,然后在需要“拖动上下文感知”的视图上设置拖动侦听器。