Can anyone tell what is the difference between px, dip, dp and sp in android?
|
feedback
|
|
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
| |||||||||||||||||||||
feedback
|
|
Use dp for anything but for fonts. 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. | ||||
|
feedback
|
|
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: | |||
|
feedback
|
|
Example at http://blog.edwinevans.me/?p=131 | |||
|
feedback
|
|
| |||
|
feedback
|
|
After you demystify the differences. This calculator http://coh.io/adpi/ will make your life easier :) | |||
|
feedback
|
|
this is use full difference between px, dip, dp and sp in android http://developer.android.com/guide/topics/resources/more-resources.html#Dimension | |||
|
feedback
|
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.