在Android中使用Dp

时间:2012-04-17 06:39:04

标签: android dpi

我对使用“ dp ”有疑问 在哪种情况下可以使用dp?它是否仅用于任何控件,即ImageView和TextView,或者它也可用于调整布局 为了调整布局,我目前根据屏幕宽度和高度的百分比来指定控件的宽度和高度。

2 个答案:

答案 0 :(得分:0)

它可以用作指定宽度和高度的单位..您可以将它与所有视图一起使用...有关详细信息,请参阅this ..

答案 1 :(得分:0)

DP

Density-independent Pixels - an abstract unit that is based on the physical density of the screen. These units are relative to a 160 dpi screen, so one dp is one pixel on a 160 dpi screen. The ratio of dp-to-pixel will change with the screen density, but not necessarily in direct proportion. Note: The compiler accepts both "dip" and "dp",

使用dip或dp可以使您的Android应用程序兼容多种屏幕密度和分辨率。