转自:http://www.apkbus.com/android-15767-1-1.html
在看本文之前,向大家介绍一下下面的2篇文章,个人认为非常好。
另外,这篇文章总结也不错 获取屏幕的高度和宽度:
http://www.iteye.com/topic/828830
还有一篇是获取状态栏和标题栏高度的文章来自CSDN 不错
http://blog.csdn.net/pilou5400/archive/2010/11/18/6018422.aspx
我们需要获取Android手机或Pad的屏幕的物理尺寸,以便于界面的设计或是其他功能的实现。下面就介绍讲一讲如何获取屏幕的物理尺寸
下面的代码即可获取屏幕的尺寸。 在一个Activity的onCreate方法中,写入如下代码: DisplayMetrics metric = new DisplayMetrics(); getWindowManager().getDefaultDisplay().getMetrics(metric); int width = metric.widthPixels; // 屏幕宽度(像素) int height = metric.heightPixels; // 屏幕高度(像素) float density = metric.density; // 屏幕密度(0.75 / 1.0 / 1.5) int densityDpi = metric.densityDpi; // 屏幕密度DPI(120 / 160 / 240)
但是,需要注意的是,在一个低密度的小屏手机上,仅靠上面的代码是不能获取正确的尺寸的。比如说,一部240x320像素的低密度手机,如果运行上述代码,获取到的屏幕尺寸是320x427。因此,研究之后发现,若没有设定多分辨率支持的话,Android系统会将240x320的低密度(120)尺寸转换为中等密度(160)对应的尺寸,这样的话就大大影响了程序的编码。所以,需要在工程的AndroidManifest.xml文件中,加入supports-screens节点,具体的内容如下:
<supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:resizeable="true" android:anyDensity="true" />
这样的话,当前的Android程序就支持了多种分辨率,那么就可以得到正确的物理尺寸了。
一、Android中的DisplayMetrics 定义了屏幕的一些属性,可以通过 getMetrics 方法得到当前屏幕的DisplayMetrics 属性,从而取得屏幕的宽和高。
/*------------获取屏幕的高度和宽度----------------*/
//定义DisplayMetrics 对象
setContentView(R.layout.main);
DisplayMetrics dm = new DisplayMetrics();
//取得窗口属性
getWindowManager().getDefaultDisplay().getMetrics(dm);
//窗口的宽度
int screenWidth = dm.widthPixels;
//窗口高度
int screenHeight = dm.heightPixels;
textView = (TextView)findViewById(R.id.textView01);
textView.setText("屏幕宽度: " + screenWidth + "\n屏幕高度: " + screenHeight);
二、获取状态栏高度
decorView是window中的最顶层view,可以从window中获取到decorView,然后decorView有个getWindowVisibleDisplayFrame方法可以获取到程序显示的区域,包括标题栏,但不包括状态栏。
于是,我们就可以算出状态栏的高度了。
三、获取标题栏高度
getWindow().findViewById(Window.ID_ANDROID_CONTENT)这个方法获取到的view就是程序不包括标题栏的部分,然后就可以知道标题栏的高度了。
下面内容转自iteye
Android 获取屏幕高度、标题高度、状态栏高度详解 Android获取屏幕高度的方法主要由view提供 通过View提供的方法获取高度方式有两种: 1, 当前显示的view中直接获取当前view高宽 2, 通过Activity的getWindow().findViewById(Window.ID_ANDROID_CONTENT)获取系统当前显示的view根(是一个framelayout对象),android绘制会将要绘制的view放置在framelayout中绘制。 下面分别介绍获取屏幕的高宽度方法 虚线区域介绍: View获取屏幕参数值方法: Display对象获取屏幕高宽 : 获取display对象 Activity中getWindowManager().getDefaultDisplay() getWidth() 返回显示界面宽度即屏幕宽度 getHeight() 返回显示界面高度即屏幕高度 由display对象设置DisplayMetrics高宽值,通过DisplayMetrics对象获取屏幕高宽,有点多此一举 : getWidth() 返回显示界面宽度即屏幕宽度 getHeight() 返回显示界面高度即屏幕高度 常用一些值计算: 屏幕高宽 Canvas对象 、display对象和DisplayMetrics可获取屏幕的高宽 状态栏高度 View的getWindowVisibleDisplayFrame(Rect outRect)附值outRect后,outRect.top()即是状态栏高度 标题高度 View的getWindowVisibleDisplayFrame(Rect outRect1)附值outRect后,outRect.height()-view.getheight()即是标题高度。 绘制区域高宽 方法诸多 随便用。 测试: 测试代码 scrollTo(10, 10); super.draw(canvas); Display d = bReader.getWindowManager().getDefaultDisplay(); Log.e("====DisPlay size==", "Height--"+d.getHeight()+" Width--"+d.getWidth()); DisplayMetrics dm = new DisplayMetrics(); d.getMetrics(dm); Log.e("====DisPlayMetrics size==", "Height--"+d.getHeight()+" Width--"+d.getWidth()); Log.e("====View size==", "Height--"+getHeight()+" Width--"+getWidth()+" Top--"+getTop()+" Left--"+getLeft()); View v = bReader.getWindow().findViewById(Window.ID_ANDROID_CONTENT); Log.e("====CONTENTView size==", "Height--"+v.getHeight()+" Width--"+v.getWidth()+" Top--"+v.getTop()+" Left--"+v.getLeft()); Log.e("======canvas size==", "height--"+canvas.getHeight()+" width--"+canvas.getWidth()); Rect rect = new Rect(); this.getDrawingRect(rect); Log.e("====view Drawing Rect==", "height--"+rect.height()+" width--"+rect.width()+" Top--"+rect.top+" Left--"+rect.left+" scrollx--"+getScrollX()+" scrollY--"+getScrollY()); this.getWindowVisibleDisplayFrame(rect); Log.e("====view WindowVisible rect==", "height--"+rect.height()+" width--"+rect.width()+" Top--"+rect.top+" Left--"+rect.left); 测试结果输出: ====DisPlay size==(3032): Height--480 Width--320 ====DisPlayMetrics size==(3032): Height--480 Width--320 ====View size==(3032): Height--430 Width--320 Top--0 Left--0 ====CONTENTView size==(3032): Height--430 Width--320 Top--50 Left--0 ======canvas size==(3032): height--480 width--320 ====view Drawing Rect==(3032): height--430 width--320 Top--10 Left--10 scrollx--10 scrollY--10 ====view WindowVisible rect==(3032): height--455 width--320 Top--25 Left--0
界面:
全屏显示输出:
====DisPlay size==(3235): Height--480 Width--320 ====DisPlayMetrics size==(3235): Height--480 Width--320 ====View size==(3235): Height--480 Width--320 Top--0 Left--0 ====CONTENTView size==(3235): Height--480 Width--320 Top--0 Left--0 ======canvas size==(3235): height--480 width--320 ====view Drawing Rect==(3235): height--480 width--320 Top--10 Left--10 scrollx--10 scrollY--10 ====view WindowVisible rect==(3235): height--455 width--320 Top--25 Left--0
测试代码: MetricsTest.rar
|