我想在Android上获取当前尺寸的屏幕,以选择适合每个屏幕的图像,因为我的图像视图当前在某些屏幕上更大!有什么方法可以得到它吗?
答案 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)
我建议您阅读Android
的文档http://developer.android.com/guide/practices/screens_support.html