Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can anyone explain the differences between the px, dip, dp and sp units in Android?

share|improve this question
1  
Example at blog.edwinevans.me/?p=131 – Edwin Evans Feb 4 '11 at 2:42
3  
After you demystify the differences. This calculator coh.io/adpi will make your life easier :) – Viktor Zuber Mar 26 '12 at 9:08
2  
this is use full difference between px, dip, dp and sp in android [ developer.android.com/guide/topics/resources/… – NagarjunaReddy May 25 '12 at 9:34
1  
There's no "dip". I guess anyone who says "dip" means "dp" and doesn't know better? – Jonny Nov 1 '12 at 11:41
2  
"dp" was actually called "dip" in early versions of the SDK. They changed it to "dp" shortly after. – Jarett May 9 at 19:25

7 Answers

up vote 1205 down vote accepted

px is one pixel. scale-independent pixels ( sp ) and density-independent pixels ( dip ) you want to use sp for font sizes and dip for everything else.

dip==dp

from here http://developer.android.com/guide/topics/resources/more-resources.html#Dimension

px
Pixels - 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.

share|improve this answer
322  
To make it absolutely clear - try to never use anything but sp or dp unless you absolutely have to. Using sp/dp will make your Android applications compatible with multiple screen densities and resolutions. – Daniel Lew Jan 8 '10 at 5:01
11  
Well i've just encounted an issue where by using dp rather than dip meant my TextView in LinearList didn't add any padding. Using dip worked, dp didn't. Go figure. – Emile Dec 22 '10 at 11:05
27  
One note about db/sp that isn't totally obvious: The scaling that occurs for these depends not on the devices real density (dpi) but on which "bucket" of densities it falls into: available buckets are: 120,160,240,320. This can cause some problems handling screens that are significantly different but get bucketed the same. – Fraggle Oct 29 '11 at 4:10
8  
Is there a reason for not using sp for everything? – Warpzit Nov 16 '11 at 11:28
16  
@Warpzit, yes, using sp for anything but text would be wrong. In "large text" accessibility mode, the text is supposed to get "fatter" relative to the rest of the UI, rather than just the whole UI scaling up. – poolie Jan 29 '12 at 7:49
show 10 more comments

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.

share|improve this answer
5  
So if you use dp for a button and sp for the font size of the button text, what happens when the user starts scaling? The text will enlarge, but will the button accommodate this by enlarging also? – Wytze Oct 5 '12 at 9:35

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:

Difference between android dimension: pt and dp

share|improve this answer

I will elaborate more on how exactly does dp convert to px:

  • If running on hdpi device 150x150 px image will take up 100*100 dp of screen space.
  • If running on mdpi device 150x150 px image will take up 150*150 dp of screen space.
  • If running on xhdpi device 150x150 px image will take up 75*75 dp of screen space.

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:

  • 100*100 px image for mdpi
  • 150*150 px image for hdpi
  • 200*200 px image for xhdpi
share|improve this answer

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.

share|improve this answer

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.

                          Lower resolution   screen          Higher resolution, same size
Physical Width                      1.5 inches                        1.5 inches
Dots Per Inch (“dpi”)               160                               240
Pixels (=width*dpi)                 240                               360
Density (factor of baseline 160)    1.0                               1.5
Density-independent Pixels          240                               240
(“dip” or “dp” or “dps”)
Scale-independent pixels (“sip” or “sp”)    Depends on user font size settings  same
share|improve this answer

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

share|improve this answer
3  
I see that this is a late answer to a big question. May I ask what this answer provides that none of the other answers already do? – Mysticial Apr 2 at 6:39

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.

Not the answer you're looking for? Browse other questions tagged or ask your own question.