HTMLView中的Lineheight

时间:2016-06-28 12:44:51

标签: react-native

不知何故,这不适用于Android,但适用于iOS:

<HTMLView value={itemDetail.description} stylesheet={htmlstyle}/>

const htmlstyle = StyleSheet.create({
  p:{
    lineHeight:28,
    fontSize:16,
    color:'#444343'
  }
});

您可以在此处找到该组件: https://github.com/jsdf/react-native-htmlview

描述如下:

<p>Hello, world!</p>

Android上,color和fontSize会更改,但不会更改lineHeight。在iOS模拟器上一切正常。

如果您可以设置lineheight,请告知我们。

2 个答案:

答案 0 :(得分:0)

您是否尝试插入Android设备USB并转到Chrome浏览器中的chrome://inspect/#devices?检查检查器中设备上的计算样式,这可能会让您对出现的问题有所了解

或者在这种情况下使用React调试器:https://facebook.github.io/react-native/docs/debugging.html#chrome-developer-tools

答案 1 :(得分:0)

这适用于当前版本的Android(0.10)。