android 横竖屏切换

< activity android:name="MyActivity"
android:configChanges="orientation|keyboardHidden">


public void onConfigurationChanged(Configuration newConfig) {

super.onConfigurationChanged(newConfig);

if (this.getResources().getConfiguration().orientation == Configuration.ORIENTATION_LANDSCAPE) {
//加入横屏要处理的代码

}else if (this.getResources().getConfiguration().orientation == Configuration.ORIENTATION_PORTRAIT) {

//加入竖屏要处理的代码

}


}

posted @ 2013-05-20 15:57  Gsdimz  阅读(117)  评论(0编辑  收藏  举报