我发现了一个代码示例,该示例演示了在react native中使用panResponder进行拖放操作。您可以在以下点心中尝试使用该代码:
https://snack.expo.io/S14RvxJ_L
我面临的问题是,如果将项目放到放置区域中,然后再触摸它,则位置会一直重置。
我希望用户能够将项目拖出放置区域,而不会出现此问题。再次澄清一下:将项目拖动到放置区域,它将显示为红色。现在再次拖动该项目,然后尝试将其拖动到任何位置,位置将被重置。我尝试使用钩子设置圆的初始位置,并尝试从起始值开始设置手势的y0和x0。到目前为止还没有解决。
到目前为止,我发现可以在onPanResponderGrant中使用pan.setOffset()。但是由于平底锅是使用useRef()创建的,因此它可变且无法更改,或者更好的是我不知道如何。
我将如何实现最佳方式?
import React from 'react';
import { StyleSheet, View, Text, Dimensions, Animated, PanResponder } from 'react-native';
export default function Drag() {
const dropZoneValues = React.useRef(null);
const pan = React.useRef(new Animated.ValueXY());
const [bgColor, setBgColor] = React.useState('#2c3e50');
const isDropZone = React.useCallback((gesture) => {
const dz = dropZoneValues.current;
return gesture.moveY > dz.y && gesture.moveY < dz.y + dz.height;
}, []);
const onMove = React.useCallback((_, gesture) => {
if (isDropZone(gesture)) setBgColor('red');
else setBgColor('#2c3e50');
}, [isDropZone]);
const setDropZoneValues = React.useCallback((event) => {
dropZoneValues.current = event.nativeEvent.layout;
});
const panResponder = React.useMemo(() => PanResponder.create({
onStartShouldSetPanResponder: () => true,
onPanResponderMove: Animated.event([null, {
dx : pan.current.x,
dy : pan.current.y
}], {
listener: onMove
}),
onPanResponderRelease: (e, gesture) => {
if (!isDropZone(gesture)) {
Animated.spring(
pan.current,
{toValue:{x:0,y:0}}
).start();
}
}
}), []);
return (
<View style={styles.mainContainer}>
<View
onLayout={setDropZoneValues}
style={[styles.dropZone, {backgroundColor: bgColor}]}
>
<Text style={styles.text}>Drop me here!</Text>
</View>
<View style={styles.draggableContainer}>
<Animated.View
{...panResponder.panHandlers}
style={[pan.current.getLayout(), styles.circle]}
>
<Text style={styles.text}>Drag me!</Text>
</Animated.View>
</View>
</View>
);
}
let CIRCLE_RADIUS = 36;
let Window = Dimensions.get('window');
let styles = StyleSheet.create({
mainContainer: {
flex: 1
},
dropZone: {
height : 100,
backgroundColor:'#2c3e50'
},
text : {
marginTop : 25,
marginLeft : 5,
marginRight : 5,
textAlign : 'center',
color : '#fff'
},
draggableContainer: {
position : 'absolute',
top : Window.height/2 - CIRCLE_RADIUS,
left : Window.width/2 - CIRCLE_RADIUS,
},
circle: {
backgroundColor : '#1abc9c',
width : CIRCLE_RADIUS*2,
height : CIRCLE_RADIUS*2,
borderRadius : CIRCLE_RADIUS
}
});
(来自https://github.com/facebook/react-native/issues/25360#issuecomment-505241400的代码]
我终于解决了
您可以在这里看到结果:https://snack.expo.io/Bky!LlqbI
您必须在onPanResponderGrant中使用setOffset和setValue。摇摄可变对象,但仍可以使用pan.current.setOffset()或pan.current.setValue()进行更改。最后,我必须将pan.current.flattenOffset添加到onPanResponderRelease,以便在放置区域中的下一次拖动时保留位置。