android螢幕顯示設定

2021-08-24 19:18:24 字數 397 閱讀 3414

程式中默的顯示是帶有標題欄和系統資訊欄的,有的時候,這很影響程式介面的美觀。手機預設的是豎屏,或與感應器狀態相關,為了某種效果,我們的程式需要限制使用橫屏或豎屏。以下的**就解決了上述問題。

//設定為無標題欄

requestwindowfeature(window.feature_no_title);

//設定為全屏模式

getwindow().setflags(windowmanager.layoutparams.flag_fullscreen, windowmanager.layoutparams.flag_fullscreen);

//設定為橫屏

setrequestedorientation(activityinfo.screen_orientation_landscape);

android 設定螢幕方向

setrequestedorientation activityinfo.screen orientation landscape 通過程式改變螢幕顯示的方向 1.landscape 橫屏 風景照 顯示時寬度大於高度 2.portrait 豎屏 肖像照 顯示時 高 度大於 寬 度 3.user 使用...

MTK 設定螢幕顯示方向

設定lcm的顯示方向需要修改幾個檔案的內容,如下 1 device projctconfig.mk中mtk lcm physical rotation 2 vendor mediatek proprietary bootable bootloader lk project xx.mk中mtk lcm...

Android學習之路 螢幕方向與顯示

橫屏 setrequestedorientation activityinfo.screen orientation landscape 豎屏 setrequestedorientation activityinfo.screen orientation portrait 設定全屏 getwindo...