How to change font face of Webview in Android?

前端 未结 14 1301
北荒
北荒 2020-11-22 12:23

I want change the default font of webview to a custom font. I\'m using webview in developing an bilingual browser app for Android.

I tried getting an instance of cus

14条回答
  •  刺人心
    刺人心 (楼主)
    2020-11-22 12:48

    If you are putting fonts under res/font like me, then you can change the dir to the following:-

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

提交回复
热议问题