不知何故,这不适用于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
,请告知我们。
答案 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)。