本文介绍了如何获得Android设备的具体DPI值?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我们可以使用 DisplayMetrics.densityDpi
来获取设备的近似DPI值,但我急切地想知道如何获得准确的DPI值?
we can use DisplayMetrics.densityDpi
to obtain a approximate dpi value of the device,but i eager to know how to obtain the exact dpi value?
推荐答案
使用DisplayMatrics.xdpi和DisplayMatrics.ydpi
Use DisplayMatrics.xdpi and DisplayMatrics.ydpi
xdpi The exact physical pixels per inch of the screen in the X dimension.
ydpi The exact physical pixels per inch of the screen in the Y dimension.
getResources().getDisplayMetrics().xdpi
getResources().getDisplayMetrics().ydpi
这篇关于如何获得Android设备的具体DPI值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!