basics of device-independent-pixels

这一生的挚爱 提交于 2019-11-27 02:54:57

问题


im throughoutly confused by dips on Android.

I understand from the reference that the base for dp values is 160. So, shouldn't 80dp in width equals a view with a width of 50% of the screen ? On my Nexus One the width in dp is something around 300dp as it seems.

What am i missing here ?

thx in advance


回答1:


"dp" == "Density-independent Pixels" (This is also why it was earlier called "dip", though I prefer to use "dp" these days.)

Think of it like other units -- "in" (inches), "mm" (millimeters), etc. It allows you to provide a size that is scaled based on the density of the screen.

We define mdpi to be the base density, so "10dp" on an mdpi screen will result in exactly 10 pixels. On an hdpi screen it will result in 15 pixels, because hdpi is 1.5*mdpi.

Note that though the constants for various densities are similar to DPI (mdpi is 160, etc), density is not exactly DPI. It is an abstract scaling factor that adjusts for screen dpi, but does not try to exactly reflect it. (You would use "in", "mm", etc for exact sizes but 99.9% that is not what you want so stick with "dp".) This greatly simplifies life for everyone because you don't need to deal with many Android devices having a slightly different amount of space for its UI because they each of slight different screen DPIs. Also, device manufacturers can select the density of their device to achieve a desired UI -- for example the Samsung Tab uses a density that is a fair amount larger than the actual DPI, resulting in an overall larger UI.




回答2:


160 dots per inch. So 80dp would be 1/2 an inch, roughly.




回答3:


I don't understand your question completely but I suggest you take a look at this, if you haven't already.

http://developer.android.com/guide/practices/screens_support.html

pixels = dps * (density / 160)




回答4:


Density independent pixels (short: dp) are a virtual pixel unit that will be determined at the runtime of your application.

Formala: 1 dp = 1 Pixel on 160 dpi screen. So 160 dpi is the baseline density for the system.

The conversion of dp units to screen pixels are quite simple. Actual device pixels (px) = dp (1) * (dpi (of the device) / 160(baseline) ) For the sake of simplicity: px = dp * (dpi / 160)

Example: If a 240 dpi device starts your app, then 1 dp equals to 1,5 actual device pixels.

Conclusion: Dp automatically handles any scaling to bigger or smaller devices. The times where you hardcode the pixels are over. DP ensures the proper scaling on different screen densities.



来源:https://stackoverflow.com/questions/4707320/basics-of-device-independent-pixels

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!