Reputation: 758
android webview
webview.setdefaultfontsize(int size);
what is the size unit?
webview.getSettings().setDefaultFontSize(20);
Is it 20pt
or 20dp
or other uinit?
Upvotes: 5
Views: 2864
Reputation: 3427
unit for font is sp
Scale-independent Pixels - this is like the dp unit, but it is also scaled by the user's font size preference. It is recommend you use this unit when specifying font sizes, so they will be adjusted for both the screen density and user's preference.
for more information about sp,dp,pixels please refer here
Upvotes: 8