2016年7月27日 星期三

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前就讀取此程式碼

沒有留言:

張貼留言