Abstracted LCD Density

前端 未结 2 1138
被撕碎了的回忆
被撕碎了的回忆 2020-12-09 18:13

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

相关标签:
2条回答
  • 2020-12-09 18:30

    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;
    
    0 讨论(0)
  • 2020-12-09 18:31

    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.

    0 讨论(0)
提交回复
热议问题