79387168

Date: 2025-01-25 17:31:05
Score: 0.5
Natty:
Report link

finally I find this modification can print multiple font size

...
WebSettings wSettings = myWebView.getSettings();
String st = editText2.getText().toString();
st = st.replaceAll("\n", "<br>");
myWebView.loadDataWithBaseURL("file:///android_asset/", st, "text/html", "UTF-8", null);
wSettings.setTextZoom((int)(editText2.getTextSize()*2));//You can change 2 to the multiple you want
...
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Fisher