React Native:是否可以调整 fontSize 以确保字体适合一行?

React Native: is it possible to adjust fontSize to make sure font fits in one line?

在我的 React Native 应用程序中,我有 <Text> 项在某些手机上会溢出并占用两行。是否可以动态调整 fontSize 以确保文本适合一行?

是的。 您可以使用 react native 中的 pixelratio 和 dimensions 如下使用

import { Dimensions, Platform, PixelRatio } from 'react-native';

const {
  width: SCREEN_WIDTH,
  height: SCREEN_HEIGHT,
} = Dimensions.get('window');

//use your testing phone width to replace 320
const scale = SCREEN_WIDTH / 320;

export function normalize(size) {
  const newSize = size * scale 
  if (Platform.OS === 'ios') {
    return Math.round(PixelRatio.roundToNearestPixel(newSize))
  } else {
    return Math.round(PixelRatio.roundToNearestPixel(newSize)) - 2
  }
}

方框样式使用上面的方法如下

const styles = {
  textStyle: {
    fontSize: normalize(12),
  },
};

当您想动态更改字体大小时,上述方法更准确。

但是如果你只想让文本适合单行你也可以使用 adjustsFontSizeToFit 如下

<View>
  <Text
    numberOfLines={1}
    adjustsFontSizeToFit
    style={{textAlign:'center',fontSize:50}}
  >
    YOUR_TEXT_HERE
  </Text>
</View>