從一開始寫Android程序,就被告知這些常識
?? 1.? 長度寬度的數值要使用dp作為單位放入dimens.xml文件中
?? 2.? 字體大小的數值要使用sp作為單位,也放入dimens.xml文件中
然后,就沒有然后了,仿佛潛臺詞就是說,你記住去用就行了.
偶然有一天,當我們陰差陽錯地將字體寫成了dp,也是可以工作,而且效果和sp一樣.
這時候,就開始懷疑了,到底有啥區(qū)別呢,dp和sp有什么不同呢?
我們做個簡單的Sample驗證一下,如下,一個布局代碼
<TextView? android:layout_width="wrap_content" android:layout_height="wrap_content"?????????????????????????????????????????? android:textSize="18sp"?????????????????????????????????????????????????????????????????????????? android:text="Hello World! in SP" />
<TextView? android:layout_width="wrap_content"? android:layout_height="wrap_content"? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? android:textSize="18dp"? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? android:text="Hello World! in DP"/>
得到的效果是這個樣子
但是,當我們進入系統(tǒng)設置中修改字體大小時
再次進入之前的界面,發(fā)現(xiàn)了一些不一樣的東西.
由此看來
使用sp作為字體大小單位,會隨著系統(tǒng)的字體大小改變
而dp作為單位則不會.
關于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 the user’s preference.
大致意思為
sp除了受屏幕密度影響外,還受到用戶的字體大小影響
通常情況下,建議使用sp來跟隨用戶字體大小設置
因此通常情況下,我們還是建議使用sp作為字體的單位,除非一些特殊的情況,不想跟隨系統(tǒng)字體變化的,可以使用dp.
來自:http://www.udpwork.com/item/15779.html