textBreakStrategy 属性的simple 、highQuality 和balanced 值有什么区别< React Native 中的 Text> 组件? documentation 中没有记录这些值。的 React Native。
Best Answer-推荐答案 strong>
默认情况下,Text 组件 Android 使用 highQuality ,这会导致单词使用连字符中断。
如果你想避免这种情况,你可以将中断策略设置为simple 。
这是所有 textBreakStrategy 之间的区别。
balanced - Line breaking strategy balances line lengths.
high_quality - Line breaking uses high-quality strategy, including
hyphenation.
simple - Line breaking uses simple strategy.
关于android - React Native 中 textBreakStrategy 属性的简单、高质量、平衡有什么区别?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/53236569/
|