2012-08-29 4 views

답변

2

이 코드를 onCreate() 메서드에 넣습니다.

if (getResources().getConfiguration().orientation == Configuration.ORIENTATION_PORTRAIT)     
{ 
     //To re-enable full screen: 

     getWindow().addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN); 
     getWindow().clearFlags(WindowManager.LayoutParams.FLAG_FORCE_NOT_FULLSCREEN);  
} 
else if (getResources().getConfiguration().orientation == Configuration.ORIENTATION_LANDSCAPE) 
{ 
     //To disable full screen: 

     getWindow().addFlags(WindowManager.LayoutParams.FLAG_FORCE_NOT_FULLSCREEN); 
     getWindow().clearFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN); 
}