[Android] 螢幕顯示控制(全螢幕、直行、橫行)

全螢幕

有時候開發遊戲,或專案有需要全螢幕的需求。


// 關閉APP標題bar
this.requestWindowFeature(Window.FEATURE_NO_TITLE);

// 關閉最上面的狀態bar
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);

//直行
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
//AndroidManifest.xml


//橫行
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE)
//AndroidManifest.xml

 

但切記,要再setContentView前就讀取此程式碼