Android适配

  • ldpi:120(240*320)
  • mdpi:160(320*480)
  • hdpi:240(480*800)
  • xhdpi:320(720*1280)
  • xxhdpi:480(1080*1800)
  • dpi值的计算:
	public static void main(String[] args) {
		// TODO Auto-generated method stub
		int height = 1024;
		int weight = 600;
		int temp = (int)(Math.pow(height,2) + Math.pow(weight,2));
		System.out.println(Math.sqrt(temp) / 4);;
	}

  • 原文地址:http://blog.csdn.net/yueritian/article/details/47103843

你可能感兴趣的:(Android适配)