@Override
protected void onResume() {
super.onResume();
/**
* 设置为横屏(或者在fest配置文件的activity标签中:
* android:screenOrientation="landscape")
*/
if(getRequestedOrientation()!= ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE){
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
}
}
网友评论