您的位置:首页 > 移动开发 > Android开发

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

2011-11-04 14:23 330 查看
Rect rect = new Rect();

getWindow().getDecorView().getWindowVisibleDisplayFrame(rect);///取得整个视图部分,注意,如果你要设置标题样式,这个必须出现在标题样式之后,否则会出错

int top = rect.top;////状态栏的高度,所以rect.height,rect.width分别是系统的高度的宽度

View v = getWindow().findViewById(Window.ID_ANDROID_CONTENT);///获得根视图

int top2 = v.getTop();///状态栏标题栏的总高度,所以标题栏的高度为top2-top

int width = v.getWidth();///视图的宽度,这个宽度好像总是最大的那个

int height = v.getHeight();////视图的高度,不包括状态栏和标题栏

如果只想取得屏幕大小,可以用

Display display = getWindowManager().getDefaultDisplay() ;

display.getWidth();

display.getHeight();

在onCreate中不能得到,要在onWindowFocusChanged中才能得到:

public class MainActivity extends Activity {

TextView textView;

/** Called when the activity is first created. */

@Override

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.main);

}

@Override

public void onWindowFocusChanged(boolean hasFocus) {

// TODO Auto-generated method stub

super.onWindowFocusChanged(hasFocus);

Rect frame = new Rect();

getWindow().getDecorView().getWindowVisibleDisplayFrame(frame);

int statusBarHeight = frame.top;

int contentTop = getWindow().findViewById(Window.ID_ANDROID_CONTENT).getTop();

//statusBarHeight是上面所求的状态栏的高度

int titleBarHeight = contentTop - statusBarHeight ;

textView = (TextView)findViewById(R.id.textView1);

textView.setText("状态栏的高度" + Integer.toString(titleBarHeight));

}

}

---搞定了,谢谢。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: