在React Native Webview中使用自定义字体

编程入门 行业动态 更新时间:2024-10-25 14:24:51
本文介绍了在React Native Webview中使用自定义字体的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我在整个React本机应用程序中使用自定义字体。我已经使用react-native link命令链接了它们。它们可以在Android的Webview组件内的任何地方工作。

I'm using custom fonts in my entire React native application. I have linked them using react-native link command. They work everywhere except inside the Webview component of Android. It works properly in 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> ) } }

我尝试用url( file:/// android_assets / fonts / Lohit-Gujarati)在webview CSS内创建字体。没用导入谷歌字体CSS的作品。在React Native Android Webview中使用本地自定义字体的正确方法是什么?

I have tried creating a font-face inside the webview css with url("file:///android_assets/fonts/Lohit-Gujarati"). It doesn't work. Importing google fonts css works. What is the right way to use local custom fonts in React native Android Webview?

推荐答案

在webview CSS中创建字体如果在WebView上设置了baseUrl,则使用url( file:/// android_asset / fonts / Lohit-Gujarati)即可:

Creating a font-face inside the webview css with url("file:///android_asset/fonts/Lohit-Gujarati") works if baseUrl is set on WebView:

<WebView source={{html, baseUrl: 'someUrl'}} style={{flex: 1}} />

我不确定为什么没有baseUrl不能正常工作,但我认为可能是因为缺少baseUrl时,RN使用另一种方法加载WebView:

I'm not sure why it doesn't work without baseUrl, but I think it can be because RN uses a different method to load the WebView when baseUrl is missing:

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); }

更多推荐

在React Native Webview中使用自定义字体

本文发布于:2023-11-07 22:33:41,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1567620.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:自定义   字体   React   Native   Webview

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!