You can use web browsing to get the settings object and setDefaultFontSize(int size) to set the default font size.
eg:
myWebView.getSettings().setDefaultFontSize(20);
Alternatively, you can use the setInitialScale(int percentage) method in your web view to set the required percentage scale, you can try it with different percentages and see which one you are like.
eg:
myWebView.setInitialScale(85);
You can also use the setBuiltInZoomControls(boolean value) to get its settings object, and then use the setBuiltInZoomControls(boolean value) method to enable / disable the user to use the default zoom value so that they can scale according to their preferences.
eg:
myWebView.getSettings().setBuiltInZoomControls(true);
source share