Is dp the same as dip?
本问题已经有最佳答案,请猛点这里访问。
Possible Duplicate:
Difference of px, dp, dip and sp in android
我已经找到了几个主题。 但没有人真的回答我的问题。
Dp和dip在android中。 有什么不同? 这是一回事吗?
是的,他们是一样的。 没有区别,它只是一个别名。
文档:
The compiler accepts both"dip" and"dp", though"dp" is more consistent with"sp".
DP
密度无关像素 - 一种基于屏幕物理密度的抽象单元。 这些单位相对于160 dpi的屏幕,因此一个dp是160 dpi屏幕上的一个像素。 dp与像素的比率将随着屏幕密度而变化,但不一定成正比。 注意:编译器接受"dip"和"dp",但"dp"与"sp"更一致。
Android上的"px","dp","dip"和"sp"有什么区别?