I used this code to change the font in WebView and it worked for me
data_webview = (WebView) findViewById(R.id.dataload_wv);
String custome_style = "<html><head><style type=\"text/css\">@font-face {font-family:
MyFont;src: url(\"file:///android_asset/font/roboto.ttf\")}body {font-family:
MyFont;font-size: medium;text-align: justify;}</style></head><body>";
String pass_data = "</body></html>";
String finalString = custome_style + YourTxext + pass_data;
data_webview.loadDataWithBaseURL(null,finalString, "text/html", "UTF-8", null);
source
share