在React原生Webview中使用自定义字体
我在整个React本机应用程序中使用自定义字体。 我已经使用react-native link命令将它们链接起来。 除了在Android的Webview组件之外,它们可以在任何地方工作。 它在iOS Webview中正常工作。
import React, { Component } from "react"
import { View, StyleSheet, Text, WebView, ScrollView, Image } from "react-native"
import HTMLView from "react-native-htmlview"
export class PostDetailPage extends Component {
static navigationOptions = {
title: ({ state }) => state.params.post.title,
header: {
style: {
backgroundColor: '#FF9800',
},
titleStyle: {
color: 'white',
fontFamily: "Ekatra",
fontWeight: "normal"
},
tintColor: 'white'
}
}
constructor(props) {
super(props)
}
render() {
const post = this.props.navigation.state.params.post
const html = `
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
body {
font-family: Lohit-Gujarati;
font-size: 1.25rem;
color: black;
padding: 0px 10px 10px 10px;
}
p {
text-align: justify;
}
</style>
</head>
<body>
${post.content}
</body>
</html>
`
return (
<View style={{ flex: 1, overflow: "visible" }}>
<Image source={{ uri: post.featured_image }} style={{ height: 150 }} />
<WebView
source={{html}}
style={{flex: 1}}
/>
</View>
)
}
}
我曾尝试在webview css中使用url创建一个font-face(“file:/// android_assets / fonts / Lohit-Gujarati”)。 它不起作用。 导入谷歌字体的CSS工程。 在React原生Android Webview中使用本地自定义字体的正确方法是什么?
如果在WebView上设置baseUrl,则在webview css中使用url(“file:/// android_asset / fonts / Lohit-Gujarati”)创建一个font-face:
<WebView
source={{html, baseUrl: 'someUrl'}}
style={{flex: 1}}
/>
我不知道为什么没有baseUrl它无法工作,但我认为这可能是因为RN在baseUrl丢失时使用不同的方法来加载WebView:
if (source.hasKey("baseUrl")) {
view.loadDataWithBaseURL(
source.getString("baseUrl"), html, HTML_MIME_TYPE, HTML_ENCODING, null);
} else {
view.loadData(html, HTML_MIME_TYPE, HTML_ENCODING);
}
链接地址: http://www.djcxy.com/p/34827.html