判断横竖屏


if (this.getResources().getConfiguration().orientation ==
            Configuration.ORIENTATION_PORTRAIT) {   //竖屏
    //doSomrthing
} else {
    //横屏时dosomething
}

在activity中重写这个方法
        @Override
        public void onConfigurationChanged(Configuration newConfig) {
                // TODO Auto-generated method stub
                super.onConfigurationChanged(newConfig);
        }
每一次横屏和竖屏都会调用这个方法

你可能感兴趣的:(判断)