会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
奇闻河谷
Powered by
博客园
博客园
|
首页
|
新随笔
|
联系
|
订阅
|
管理
获取手机屏幕尺寸的代码段[转自eoeandroid]
来个
获取
屏幕
尺寸的
代码
,希望有人用的上:
Code
1
public
static
String getDisplayMetrics(Context cx)
{
2
String str
=
""
;
3
DisplayMetrics dm
=
new
DisplayMetrics();
4
dm
=
cx.getApplicationContext().getResources().getDisplayMetrics();
5
int
screenWidth
=
dm.widthPixels;
6
int
screenHeight
=
dm.heightPixels;
7
float
density
=
dm.density;
8
float
xdpi
=
dm.xdpi;
9
float
ydpi
=
dm.ydpi;
10
str
+=
"
The absolute width:
"
+
String.valueOf(screenWidth)
+
"
pixels\n
"
;
11
str
+=
"
The absolute heightin:
"
+
String.valueOf(screenHeight)
12
+
"
pixels\n
"
;
13
str
+=
"
The logical density of the display.:
"
+
String.valueOf(density)
14
+
"
\n
"
;
15
str
+=
"
X dimension :
"
+
String.valueOf(xdpi)
+
"
pixels per inch\n
"
;
16
str
+=
"
Y dimension :
"
+
String.valueOf(ydpi)
+
"
pixels per inch\n
"
;
17
return
str;
18
}
发表于
2009-06-23 12:24
奇闻河谷
阅读(
299
) 评论(
0
)
编辑
收藏
举报
刷新页面
返回顶部