0

我想在Android上获取当前尺寸的屏幕英寸来选择适合每个屏幕的图像,因为我的图像视图电流在某些屏幕上更大!有什么方法可以得到吗?

4

2 回答 2

1

看看这个 :

有没有办法以厘米或英寸为单位确定 android 物理屏幕高度?

    DisplayMetrics dm = new DisplayMetrics();
    getWindowManager().getDefaultDisplay().getMetrics(dm);
    double x = Math.pow(dm.widthPixels/dm.xdpi,2);
    double y = Math.pow(dm.heightPixels/dm.ydpi,2);
    double screenInches = Math.sqrt(x+y);
    Log.d("debug","Screen inches : " + screenInches);
于 2013-11-12T19:34:44.833 回答
0

我推荐阅读Android的文档

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

于 2013-11-12T19:40:50.083 回答