Como calcular o tamanho físico da tela no Android?
Use o seguinte código para calcular o tamanho físico da tela no 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 : ” …
Continuar lendo