Can anyone tell what is the difference between px, dip, dp and sp in android?
|
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.
|
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 instead. 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. Good luck! | ||||
|
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
|