如何通过编程获得当前大小的屏幕?

时间:2013-11-12 19:31:40

标签: android imageview

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

2 个答案:

答案 0 :(得分:1)

看看这个:

Is there a way to determine android physical screen height in cm or inches?

    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);

答案 1 :(得分:0)