Evan Lee
Evan Lee

Reputation: 758

android webview setdefaultfontsize(int size), what is the size unit?

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

Answers (1)

Nirav Tukadiya
Nirav Tukadiya

Reputation: 3427

unit for font is sp

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

Related Questions