Can anyone explain the differences between the px, dip, dp and sp units in Android?
|
|
px is one pixel.
scale-independent pixels (
from here http://developer.android.com/guide/topics/resources/more-resources.html#Dimension
|
|||||||||||||||||||||
|
|
Use dp for anything but for fonts use sp. Pretty much everything about this and how to achieve the best support for multiple screens with different sizes and density is very well documented here: If you are any serious about developing an android app for more than one type of device, you should have read the above at least once. In addition to that it is always a good thing to know the actual number of active devices that have a particular screen configuration. |
|||||
|
|
For some screenshots on different devices showing the differences between each unit (as well as some curious discrepancies against the documentation), see this related question: |
|||
|
|
|
I will elaborate more on how exactly does dp convert to px:
The other way around: say, you want to add an image to your application and you need it to fill 100*100 dp control, you'll need to create different size images for supported screen sizes:
|
|||
|
|
|
Basically the only time where px applies is 1px, and that's if you want exactly 1 pixel on the screen like in the case of a divider. On >160, you may get 2-3 pixels, and on 120dpi, it rounds to 0. |
|||
|
|
|
px Pixels - point per scale corresponds to actual pixels on the screen. in Inches - based on the physical size of the screen. mm Millimeters - based on the physical size of the screen. pt Points - 1/72 of an inch based on the physical size of the screen. 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", though "dp" is more consistent with "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. Take the example of two screens that are the same size but one has a resolution of 160 dpi (dots per inch, i.e. pixels per inch) and the other is 240 dpi.
|
||||
|
|
|
px Pixels - corresponds to actual pixels on the screen. dp or dip 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. Use of dp: Density independence - Your application achieves “density independence” when it preserves the physical size (from the user’s point of view) of user interface elements when displayed on screens with different densities. (ie) The image should look the same size (not enlarged or shrinked) in different types of screens. sp Scale-independent Pixels - this is like the dp unit, but it is also scaled by the user's font size preference. http://developer.android.com/guide/topics/resources/more-resources.html#Dimension |
|||||
|
protected by Robert Harvey♦ Apr 21 '11 at 21:24
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
