.主要是为了总结一下 对这些概念有个直观的认识;

.

作者 : 万境绝尘 

转载请注明出处http://blog.csdn.net/shulianghan/article/details/19899193

.

一. 数据采集

源码GitHub地址 :

-- SSHgit@github.com:han1202012/DisplayTest.git;

-- HTTPhttps://github.com/han1202012/DisplayTest;

.

使用下面的程序运行在不同设备上 :

package shuliang.han.displaytest;

import android.app.Activity;
import android.os.Bundle;
import android.util.DisplayMetrics;

public class MainActivity extends Activity {

	//屏幕的宽高, 单位像素
	private int screenWidth;
	private int screenHeight;

	//屏幕的密度
	private float density;	//只有五种情况 : 0.75/ 1.0/ 1.5/ 2.0/ 3.0
	private int densityDpi;	//只有五种情况 : 120/ 160/ 240/ 320/ 480

	//水平垂直精确密度
	private float xdpi;	//水平方向上的准确密度, 即每英寸的像素点
	private float ydpi;	//垂直方向上的准确密度, 即没音村的像素点

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);

//		getPixelWindowManager();
//		getPixelDisplayMetrics();
		getPixelDisplayMetricsII();

		System.out.println("宽:" + screenWidth + ", 高:"+screenHeight);
		System.out.println("密度 density:" + density + ",densityDpi:" +densityDpi);
		System.out.println("精确密度 xdpi:" + xdpi + ", ydpi:" + ydpi);
	}

	private void getPixelWindowManager() {
		screenWidth = getWindowManager().getDefaultDisplay().getWidth();
		screenHeight = getWindowManager().getDefaultDisplay().getHeight();
	}

	private void getPixelDisplayMetrics() {
		DisplayMetrics dm = new DisplayMetrics();
		dm = getResources().getDisplayMetrics();

		screenWidth = dm.widthPixels;
		screenHeight = dm.heightPixels;

		density = dm.density;
		densityDpi = dm.densityDpi;

		xdpi = dm.xdpi;
		ydpi = dm.ydpi;
	}

	private void getPixelDisplayMetricsII() {
		DisplayMetrics dm = new DisplayMetrics();
		getWindowManager().getDefaultDisplay().getMetrics(dm);

		screenWidth = dm.widthPixels;
		screenHeight = dm.heightPixels;

		density = dm.density;
		densityDpi = dm.densityDpi;

		xdpi = dm.xdpi;
		ydpi = dm.ydpi;
	}
}

1. 三星 GT-N8000 平板

设备规格 :

-- 屏幕尺寸 10.1英寸
-- 屏幕分辨率 WXGA TFT 1280x800
-- 屏幕比例 16:9 
-- 屏幕类型 TFT

运行程序采集的数据 :

02-22 16:21:11.230: I/System.out(29911): 宽:1280, 高:752
02-22 16:21:11.230: I/System.out(29911): 密度 density:1.0,densityDpi:160
02-22 16:21:11.230: I/System.out(29911): 精确密度 xdpi:149.82489, ydpi:150.51852

布局文件 :

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

    <TextView
        android:layout_width="1280dp"
        android:layout_height="wrap_content"
        android:background="#FF0000"
        android:text="@string/hello_world" />

</LinearLayout>

运行效果

2. 三星 P-601平板

设备规格 :

-- 屏幕尺寸 : 10.1英寸
-- 屏幕分辨率 : 2560x1600
-- 屏幕比例 : 16:9
-- 屏幕类型 : TFT

运行程序后采集的数据 :

02-28 10:30:55.338: I/System.out(18566): 宽:2560, 高:1600
02-28 10:30:55.338: I/System.out(18566): 密度 density:2.0,densityDpi:320
02-28 10:30:55.338: I/System.out(18566): 精确密度 xdpi:301.037, ydpi:301.037

布局文件

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

    <TextView
        android:layout_width="1280dp"
        android:layout_height="wrap_content"
        android:background="#FF0000"
        android:text="@string/hello_world" />

</LinearLayout>

效果图

XML文件 :

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

    <TextView
        android:layout_width="1270dp"
        android:layout_height="wrap_content"
        android:background="#FF0000"
        android:text="@string/hello_world" />

</LinearLayout>

效果图 : 1280dp能布满屏幕, 1270dp差一点布满屏幕;

3. 三星Galaaxy Note3 SM-N9002

设备规格 :

-- 屏幕尺寸 : 5.7英寸
-- 屏幕色彩 : 1600万色
-- 屏幕材质 : Super AMOLED
-- 分辨率 : 1920*1080
-- 触摸屏 : 电容屏

运行程序采集的数据 :

02-28 10:37:48.960: I/System.out(5770): 宽:1080, 高:1920
02-28 10:37:48.960: I/System.out(5770): 密度 density:3.0,densityDpi:480
02-28 10:37:48.960: I/System.out(5770): 精确密度 xdpi:386.366, ydpi:387.047

XML布局文件 : 

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

    <TextView
        android:layout_width="360dp"
        android:layout_height="wrap_content"
        android:background="#FF0000"
        android:text="@string/hello_world" />

</LinearLayout>

效果图 : 360dp 是正好能布满整个屏幕.

XML布局文件 :

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

    <TextView
        android:layout_width="350dp"
        android:layout_height="wrap_content"
        android:background="#FF0000"
        android:text="@string/hello_world" />

</LinearLayout>

效果图 : 350dp 就差一点布满全屏;

.

4. 三星 GT-I9220

规格参数 :

-- 屏幕尺寸 : 6.3英寸
-- 屏幕色彩 : 1600万色
-- 屏幕材质 : Super Clear LCD
-- 分辨率 : 1280 x 720

运行程序收集的数据 :

02-28 11:09:10.848: I/System.out(17853): 宽:800, 高:1280
02-28 11:09:10.848: I/System.out(17853): 密度 density:2.0,densityDpi:320
02-28 11:09:10.848: I/System.out(17853): 精确密度 xdpi:317.5, ydpi:306.71698

XML布局文件 :

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

    <TextView
        android:layout_width="400dp"
        android:layout_height="wrap_content"
        android:background="#FF0000"
        android:text="@string/hello_world" />

</LinearLayout>

效果图

XML布局文件 :

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

    <TextView
        android:layout_width="390dp"
        android:layout_height="wrap_content"
        android:background="#FF0000"
        android:text="@string/hello_world" />

</LinearLayout>

效果图 :

5. 青橙 GO M2S

规格参数 :

-- 屏幕分辨率 : 480 X 800

-- 屏幕材质 : TFT

-- 屏幕尺寸 : 124.2×63.8×10.45毫米

运行程序采集数据 :

02-28 11:16:08.254: I/System.out(31888): 宽:480, 高:800
02-28 11:16:08.254: I/System.out(31888): 密度 density:1.5,densityDpi:240
02-28 11:16:08.254: I/System.out(31888): 精确密度 xdpi:160.42105, ydpi:160.0

XML布局文件 : 320dp占满全屏;

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

    <TextView
        android:layout_width="320dp"
        android:layout_height="wrap_content"
        android:background="#FF0000"
        android:text="@string/hello_world" />

</LinearLayout>

效果图

XML布局文件 :

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

    <TextView
        android:layout_width="310dp"
        android:layout_height="wrap_content"
        android:background="#FF0000"
        android:text="@string/hello_world" />

</LinearLayout>

效果图 : 310dp差一点占满全屏;

6. 联想 s890

规格参数 : 5英寸 960x540像素

运行程序收集数据 :

02-28 11:27:27.330: I/System.out(7708): 宽:540, 高:960
02-28 11:27:27.330: I/System.out(7708): 密度 density:1.5,densityDpi:240
02-28 11:27:27.330: I/System.out(7708): 精确密度 xdpi:240.0, ydpi:240.0

XML布局文件 :

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

    <TextView
        android:layout_width="360dp"
        android:layout_height="wrap_content"
        android:background="#FF0000"
        android:text="@string/hello_world" />

</LinearLayout>

效果图 : 360dp 布满全屏;

XML布局文件 :

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

    <TextView
        android:layout_width="350dp"
        android:layout_height="wrap_content"
        android:background="#FF0000"
        android:text="@string/hello_world" />

</LinearLayout>

效果图 : 350dp 差一点布满全屏

7. 华为 D2-0082

规格参数 :

-- 屏幕尺寸 : 5.0英寸;
-- 屏幕色彩 : 1600万色;
-- 屏幕材质 : IPS;
-- 分辨率 : 1920*1080;

运行程序采集的数据 :

03-04 17:18:07.512: I/System.out(9435): 宽:1080, 高:1776
03-04 17:18:07.516: I/System.out(9435): 密度 density:3.0,densityDpi:480
03-04 17:18:07.516: I/System.out(9435): 精确密度 xdpi:442.4516, ydpi:443.34546

XML布局文件 : 360dp 布满全屏;

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

    <TextView
        android:layout_width="360dp"
        android:layout_height="wrap_content"
        android:background="#FF0000"
        android:text="@string/hello_world" />

</LinearLayout>

效果图 :

XML布局文件 : 350dp 横向 差一点布满全屏;

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

    <TextView
        android:layout_width="350dp"
        android:layout_height="wrap_content"
        android:background="#FF0000"
        android:text="@string/hello_world" />

</LinearLayout>

效果图

8. 三星 SM-T311

屏幕规格 :

-- 屏幕尺寸 : 8英寸
-- 屏幕分辨率 : 1280*800
-- 屏幕比例 : 16:10
-- 屏幕类型 : TFT
-- 指取设备 : 触摸
-- 屏幕描述 : 电容屏

运行程序采集的数据 :

02-22 23:02:05.780: I/System.out(5053): 宽:1280, 高:800
02-22 23:02:05.780: I/System.out(5053): 密度 density:1.3312501,densityDpi:213
02-22 23:02:05.780: I/System.out(5053): 精确密度 xdpi:188.148, ydpi:187.93

213的归一化密度 这是闹哪样啊 ...

计算横向dp数 : 1280 / 1.3312501 = 961.50227519 ... 

XML布局文件 :

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

    <TextView
        android:layout_width="955.5dp"
        android:layout_height="wrap_content"
        android:background="#FF0000"
        android:text="@string/hello_world" />

</LinearLayout>

效果图 : 差一点布满全屏;

XML布局文件 :

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

    <TextView
        android:layout_width="961.5dp"
        android:layout_height="wrap_content"
        android:background="#FF0000"
        android:text="@string/hello_world" />

</LinearLayout>

效果图 :

.

二. 数据分析

. 型号 分辨率 密度 归一化密度 水平物理密度 垂直物理密度

.

手机型号 分辨率 密度 | 宽度(dp) | 宽度(inch) 归一化密度 水平精确密度 垂直物理密度
三星GT-N8000 1280 x 800 1.0 | 1280dp | 8.54in 160 149.82489 150.51852
三星P-601 2560 x 1600 2.0 | 1280dp | 8.49in 320 301.037 301.037 
三星SM-N9002 1080 x 1920 3.0 | 360dp | 2.795in 480 386.366 387.047
三星GT-I9220 720 x 1280 2.0 | 360dp | 2.68in 320 317.5 306.71698
青橙GO M2S 480 x 800 1.5 | 320dp | 2.99in 240 160.42105 160.0 
联想S980 540 x 960 1.5 | 360dp | 2.25in 240 240.0 240.0
华为D2-0082 1080 x 1920 3.0 | 360dp | 2.44in 480 442.4516 443.34546

. 有点凌乱啊, 先留着以后在总结;

现有公式 :

-- 像素 和 设备独立像素 转换公式 : px = dp * densityDpi / 160 , density 是归一化密度;

-- 英寸数 和 分辨率 转换公式 : in = px / real_densityDpi , dpi 是真实的物理密度;

-- 设备独立像素 和 分辨率之间转换 : dp = px / density ;

物理长度计算 :

-- 根据设备独立像素计算实际物理长度 : in = px / real_densityDpi ;

.

物理密度和归一化密度 :  有点凌乱, 哪个安卓大神能解释下为什么啊, 定义的标准时什么啊, 想怎么定义就怎么定义? 青橙手机是奇葩啊 !!! 先写到这 ╮(╯▽╰)╭

.

作者 : 万境绝尘 

转载请注明出处 : http://blog.csdn.net/shulianghan/article/details/19899193

.

【Android 应用开发】分析各种Android设备屏幕分辨率与适配 - 使用大量真实安卓设备采集真实数据统计的更多相关文章

  1. 分析各种Android设备屏幕分辨率与适配 - 使用大量真实安卓设备采集真实数据统计

    一. 数据采集 源码GitHub地址 : -- SSH : git@github.com:han1202012/DisplayTest.git; -- HTTP : https://github.co ...

  2. 获取Android设备屏幕分辨率

    1.Android 4.3引入的wm工具: a.获取Android设备屏幕分辨率: adb shell wm size b.获取android设备屏幕密度: adb shell wm density ...

  3. iOS设备屏幕分辨率分布

    iOS设备屏幕分辨率比较单一,960*640是iPhone4和4s的分辨率,占比67.4%;1024*768是iPad1和iPad2的分辨率,占比22.5%;480*320是iPhone3和3gs的分 ...

  4. Android采访开发——2.通用Android基础笔试题

    注意finddreams博客: http://blog.csdn.net/finddreams/article/details/44219231 正值跳槽的热季.整理一下Android面试中最常考的笔 ...

  5. 【Android 系统开发】 编译 Android文件系统 u-boot 内核 并烧写到 OK-6410A 开发板上

    博客地址 : http://blog.csdn.net/shulianghan/article/details/40299813  本篇文章中用到的工具源码下载 : -- ok-6410A 附带的 A ...

  6. 【Android 应用开发】对Android体系结构的理解--后续会补充

    1.最底层_硬件 任何Android设备最底层的硬件包括 显示屏, wifi ,存储设备 等. Android最底层的硬件会根据需要进行裁剪,选择自己需要的硬件. 2.Linux内核层 该层主要对硬件 ...

  7. [Android Pro] 开发一流的 Android SDK:Fabric SDK 的创建经验

    cp from : https://academy.realm.io/cn/posts/oredev-ty-smith-building-android-sdks-fabric/ Ty Smith T ...

  8. Android源码分析一 Android系统架构

    一 Android系统架构 Linux内核层(Linux Kernel):Android系统基于Linux2.6内核,这一层为Android设备各种硬件提供了底层驱动,如显示驱动.音频驱动.照相机驱动 ...

  9. IDEA搭建Android wear开发环境,Android wear,I&#39;m comming!

    随着google公布了android wear这个东西.然后又有了三星的gear,LG的G watch以及moto 360,苹果由公布了apple watch.未来可能在智能手表行业又有一场战争. 当 ...

随机推荐

  1. opencv之人脸识别

    最近在做一个类似于智能广告投放的项目,简单思路是利用opencv获取摄像头图像,然后调用接口或利用其他一些离线模型进行人脸属性识别,进而投放广告.本篇先简单介绍利用opecv进行人脸识别. # -*- ...

  2. Android开发学习之路--性能优化之常用工具

      android性能优化相关的开发工具有很多很多种,这里对如下六个工具做个简单的使用介绍,主要有Android开发者选项,分析具体耗时的Trace view,布局复杂度工具Hierarchy Vie ...

  3. MyBatis 查询映射自定义枚举

    背景                  MyBatis查询若想映射枚举类型,则需要从 EnumTypeHandler 或者 EnumOrdinalTypeHandler 中选一个来使用         ...

  4. Objective-C语法概述

    Objective-C语法概述 简称OC 面向对象的C语言 完全兼容C语言 可以在OC里面混入C/C++代码 可以开发IOS和Mac OS X平台应用 语法预览 关键字 基本上都是以@开头(为了与C语 ...

  5. 在线看Android系统源码,那些相见恨晚的几种方案

    请尊重分享成果,转载请注明出处,本文来自逆流的鱼yuiop,原文链接:http://blog.csdn.net/hejjunlin/article/details/53454514 前言:最近在研究M ...

  6. Python descriptor

    class A: def __init__(self, name): self.name = name def __get__(self, ins, cls): print('call get') i ...

  7. 剑指Offer——咪咕笔试题+知识点总结

    剑指Offer--咪咕笔试题+知识点总结 情景回顾 时间:2016.10.09 15:00-16:30 地点:山东省网络环境智能计算技术重点实验室 事件:咪咕笔试 知识点总结 1.Html设置格式贵阳 ...

  8. 谷歌面试题:输入是两个整数数组,他们任意两个数的和又可以组成一个数组,求这个和中前k个数怎么做?

    谷歌面试题:输入是两个整数数组,他们任意两个数的和又可以组成一个数组,求这个和中前k个数怎么做? 分析: "假设两个整数数组为A和B,各有N个元素,任意两个数的和组成的数组C有N^2个元素. ...

  9. springMVC+Hibernate4+spring整合实例二(实例代码部分)

    UserController.java 代码: package com.edw.controller; import java.io.IOException; import java.io.Print ...

  10. java虚拟机 jvm 栈数据区

    java栈帧还是需要一些数据支持常量池的解析.正常方法的返回和异常的处理.大部分的java字节码指令需要进行常量池的访问,在栈帧数据区中保存着访问常量池的指针,方便程序访问java常量池.如下图所示: ...