我们可以使用DisplayMetrics.densityDpi
来获取设备的近似dpi值,但我很想知道如何获得精确的dpi值?
答案 0 :(得分:7)
我认为您可以通过课程DisplayMetrics
和字段densityDpi
访问此内容。
答案 1 :(得分:7)
使用DisplayMatrics.xdpi和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