Abstracted LCD Density

廉价感情. 提交于 2019-12-28 13:46:36

问题


How do you calculate the Abstracted LCD Density for an AVD ?


回答1:


The Abstracted LCD Density is measured in dots per inch (see the docs).

The wikipedia article on Pixel density has a helpful section explaining how to calculate this: basically the number of pixels per inch along the diagonal can be calculated by this formula, where x and y are the horizontal and vertical resolution (so that sqrt(x*x + y*y) is the length of the diagonal in pixels), and d is the length of the diagonal in inches:

sqrt(x*x + y*y)/d

So for example, a LG Optimus One P500 is listed as having a screen resolution of 320 by 480, and a diagonal screen size of 3.2 inches, so it would have a density very close to 180dpi.




回答2:


Well, I don't know whats Abstracted Density really means but can this help ?

DisplayMetrics displayMetrics=new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(displayMetrics);
float density=displayMetrics.density;


来源:https://stackoverflow.com/questions/4533300/abstracted-lcd-density

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