How to change font face of Webview in Android?

前端 未结 14 1381
北荒
北荒 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:32

     webview= (WebView) findViewById(R.id.webview);
     String myCustomStyleString="";
     webview.loadDataWithBaseURL("", myCustomStyleString+"
    "+intentpost.getStringExtra("content")+"
    ", "text/html", "utf-8", null);

提交回复
热议问题