How to change the font of Webview in Android?

If you res/fontput the fonts below like I did, then you can change the directory to the following:-

@font-face {
     font-family: yourfont;
     src: url("file:///android_res/font/yourfont.ttf")
}
        
body {
     font-family: yourfont;
}

The right spacing of html font is not moved to the edge

1. Open the browser to open the html page you want to adjust, and press F12 to enter web debugging mode.

2. Set margin:0 to solve the problem

The font spacing at the top of the html font is not close to the edge

1. Open the browser to open the html page you want to adjust, and press F12 to enter web debugging mode.

2. Set line-height: 1em; to solve the problem

reference

How to change font face of Webview in Android?

おすすめ

転載: blog.csdn.net/chengzhenjia/article/details/131110272