android取得系统高度,标题栏和状态高度


01 Rect rect = new Rect();
02 getWindow().getDecorView().getWindowVisibleDisplayFrame(rect);///取得整个视图部分,注意,如果你要设置标题样式,这个必须出现在标题样式之后,否则会出错
03 int top = rect.top;状态栏的高度,所以rect.height,rect.width分别是系统的高度的宽度
04 View v = getWindow().findViewById(Window.ID_ANDROID_CONTENT);///获得根视图
05 int top2 = v.getTop();///状态栏标题栏的总高度,所以标题栏的高度为top2-top
06 int width = v.getWidth();///视图的宽度,这个宽度好像总是最大的那个
07 int height = v.getHeight();视图的高度,不包括状态栏和标题栏
08  
09 如果只想取得屏幕大小,可以用
10 Display display = getWindowManager().getDefaultDisplay() ;
11 display.getWidth();
12 display.getHeight();
13  
14  
15 在onCreate中不能得到,要在onWindowFocusChanged中才能得到:
16  
17  
18 public class MainActivity extends Activity {
19 TextView textView;
20  
21 /** Called when the activity is first created. */
22 @Override
23 public void onCreate(Bundle savedInstanceState) {
24 super.onCreate(savedInstanceState);
25 setContentView(R.layout.main);
26  
27  
28 }
29  
30 @Override
31 public void onWindowFocusChanged(boolean hasFocus) {
32 // TODO Auto-generated method stub
33 super.onWindowFocusChanged(hasFocus);
34 Rect frame = new Rect();
35 getWindow().getDecorView().getWindowVisibleDisplayFrame(frame);
36 int statusBarHeight = frame.top;
37  
38  
39 int contentTop = getWindow().findViewById(Window.ID_ANDROID_CONTENT).getTop();
40 //statusBarHeight是上面所求的状态栏的高度
41 int titleBarHeight = contentTop - statusBarHeight ;
42  
43 textView = (TextView)findViewById(R.id.textView1);
44 textView.setText("状态栏的高度" + Integer.toString(titleBarHeight));
45 }
46  
47  
48  
49 }

横屏.png (38.2 KB, 下载次数: 0)

横屏.png

竖屏.png (48.77 KB, 下载次数: 0)

竖屏.png

图形源码.png (20.56 KB, 下载次数: 0)

图形源码.png

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值