我正在设计一个Image
组件,其中flexbox位于屏幕的中心,效果非常好。现在我希望第二个Image
组件直接显示在第一个组件的顶部。第二张图像使用绝对定位。目前我只是猜测像素,以便适合,但当然这不准确,而且可维护性太大。
我几乎都在寻找与jQuery的.offset()
相当的React Native。有这样的事情,如果没有最好的方法来实现这个目标吗?
答案 0 :(得分:65)
React Native提供了一个.measure(...)
方法,该方法接受回调并使用组件的偏移量和宽度/高度调用它:
myComponent.measure( (fx, fy, width, height, px, py) => {
console.log('Component width is: ' + width)
console.log('Component height is: ' + height)
console.log('X offset to frame: ' + fx)
console.log('Y offset to frame: ' + fy)
console.log('X offset to page: ' + px)
console.log('Y offset to page: ' + py)
})
以下计算自定义组件渲染后的布局:
class MyComponent extends React.Component {
render() {
return <View ref={view => { this.myComponent = view; }} />
}
componentDidMount() {
// Print component dimensions to console
this.myComponent.measure( (fx, fy, width, height, px, py) => {
console.log('Component width is: ' + width)
console.log('Component height is: ' + height)
console.log('X offset to frame: ' + fx)
console.log('Y offset to frame: ' + fy)
console.log('X offset to page: ' + px)
console.log('Y offset to page: ' + py)
})
}
}
请注意,有时组件在调用componentDidMount()
之前无法完成呈现。如果你从measure(...)
得到零,那么将它包装在setTimeout
中可以解决问题,即:
setTimeout( myComponent.measure(...), 0 )
答案 1 :(得分:23)
您可以使用onLayout
在组件可用的最早时刻获取组件的宽度,高度和相对父级位置:
<View
onLayout={event => {
const layout = event.nativeEvent.layout;
console.log('height:', layout.height);
console.log('width:', layout.width);
console.log('x:', layout.x);
console.log('y:', layout.y);
}}
>
与using .measure()
as shown in the accepted answer相比,这样做的好处是,您永远不必动摇.measure()
次setTimeout
来电,以确保测量结果可用,但相对于整个页面,它没有给你偏移的缺点,只有相对于元素父亲的偏移。
答案 2 :(得分:18)
我需要在ListView中找到元素的位置,并使用与.offset
类似的代码片段:
const UIManager = require('NativeModules').UIManager;
const handle = React.findNodeHandle(this.refs.myElement);
UIManager.measureLayoutRelativeToParent(
handle,
(e) => {console.error(e)},
(x, y, w, h) => {
console.log('offset', x, y, w, h);
});
这假设我的组件上有ref='myElement'
。
答案 3 :(得分:6)
我遇到了类似的问题,并通过结合以上答案解决了
class FeedPost extends React.Component {
constructor(props) {
...
this.handleLayoutChange = this.handleLayoutChange.bind(this);
}
handleLayoutChange() {
this.feedPost.measure( (fx, fy, width, height, px, py) => {
console.log('Component width is: ' + width)
console.log('Component height is: ' + height)
console.log('X offset to page: ' + px)
console.log('Y offset to page: ' + py)
})
}
render {
return(
<View onLayout={(event) => {this.handleLayoutChange(event) }}
ref={view => { this.feedPost = view; }} >
...
现在我可以在日志中看到feedPost元素的位置:
08-24 11:15:36.838 3727 27838 I ReactNativeJS: Component width is: 156
08-24 11:15:36.838 3727 27838 I ReactNativeJS: Component height is: 206
08-24 11:15:36.838 3727 27838 I ReactNativeJS: X offset to page: 188
08-24 11:15:36.838 3727 27838 I ReactNativeJS: Y offset to page: 870
答案 4 :(得分:2)
在使用refs计算时,最新版本的React Native似乎发生了变化。
以这种方式声明引用。
<View
ref={(image) => {
this._image = image
}}>
以这种方式找到价值。
_measure = () => {
this._image._component.measure((width, height, px, py, fx, fy) => {
const location = {
fx: fx,
fy: fy,
px: px,
py: py,
width: width,
height: height
}
console.log(location)
})
}
答案 5 :(得分:1)
如果您使用功能组件,而又不想使用forwardRef
来衡量组件的绝对布局,则可以从LayoutChangeEvent
中获得对它的引用。 onLayout
回调。
这样,您可以获取元素的绝对位置:
<MyFunctionComp
onLayout={(event) => {
event.target.measure(
(x, y, width, height, pageX, pageX) => {
doSomethingWithAbsolutePosition({
x: x + pageX,
y: y + pageY,
});
},
);
}}
/>
使用React Native 0.63.3进行了测试。