Android dp和sp



最佳实践,文字的尺寸一律用sp单位,非文字的尺寸一律使用dp单位

例如textSize="16sp"、layout_width="60dp";偶尔需要使用px单位,例如需要在屏幕上画一条细的分隔线时:

<View layout_width="match_parent" layout_height="1px"/>

你可能感兴趣的:(Android dp和sp)