React Native中使用的尺寸单位是dp(一种基于屏幕密度的抽象单位。在每英寸160点的显示器上,1dp = 1px),而设计师使用的是px, 这两种尺寸如何换算呢?
官方提供了PixelRatio进行pt到px的转换
import {PixelRatio} from 'react-native'; const dp2px = dp=>PixelRatio.getPixelSizeForLayoutSize(dp); const px2dp = px=>PixelRatio.roundToNearestPixel(px);
设计师给你一个尺寸,比如100px*200px的View,按照下面的方式可实现设计还原:
View style={{width:px2dp(100),height:px2dp(200),backgroundColor:“red”}}
如果每个地方都这样写会很麻烦,于是我们就有了下面转换代码
import {PixelRatio,Dimensions}} from 'react-native'; const dp2px = dp=>PixelRatio.getPixelSizeForLayoutSize(dp); const px2dp = px=>PixelRatio.roundToNearestPixel(px); let designSize = {width:720,height:1280}; //假设设计尺寸为:720*1280 let pxRatio = PixelRatio.get(); let win_width = Dimensions.get("window").width; let win_height = Dimensions.get("window").height; let width = dp2px(win_width); let height = dp2px(win_height); let design_scale = designSize.width/width; height = height*design_scale let scale = 1/pxRatio/design_scale; 实际使用: 要在最外层View上设置如下样式: const styles = StyleSheet.create({ container: { width: width, height: height, transform: [{translateX: -width * .5}, {translateY: -height * .5}, {scale: scale}, {translateX: width * .5}, {translateY: height * .5}] } });
在后续的开发中将不必再关注适配的问题,只需要按照设计师给的尺寸实现布局即可,比如设计稿中的图片尺寸是300px*300px,你的样式中就写 width: 300,height: 300,
这里就写设计稿上的300px 300px,不用带单位
image: {
width:300,
height:300
}
参考文件:https://blog.csdn.net/weixin_40166364/article/details/78532992
https://www.cnblogs.com/dongdong415/p/10785335.html
https://blog.csdn.net/qq_25905161/article/details/81331721
https://blog.csdn.net/weixin_40166364/article/details/78532992
————————————————
版权声明:本文为CSDN博主「signlesun」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/weixin_42262889/article/details/93768597