您可以呼叫
enableEdgeToEdge
。
這對大多數應用程式來說應該已足夠。本指南說明如何啟用
則可在不使用 enableEdgeToEdge
的情況下使用
讓應用程式以全螢幕顯示
使用 WindowCompat.setDecorFitsSystemWindows(window,
false)
將應用程式版面配置在系統列後方,如以下程式碼範例所示:
Kotlin
override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) WindowCompat.setDecorFitsSystemWindows(window, false) }
Java
@Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); WindowCompat.setDecorFitsSystemWindows(getWindow(), false); }
變更系統資訊列的顏色
在邊到邊版面配置中運作時,應用程式需要變更系統列的顏色,讓底下內容可見。在應用程式之後 系統就會處理使用者的所有視覺保護措施 介面與按鈕模式中的介面。
- 手勢導覽模式:系統會套用動態色彩調整功能,系統列內容會根據後方內容變更顏色。在下列範例中,導覽列中的手把在淺色內容上方時會變成深色,在深色內容上方時則會變成淺色。
- 按鈕模式:系統會在系統列後方套用半透明的陰影 (適用於 API 級別 29 以上版本),或是透明的系統列 (適用於 API 級別 28 以下版本)。
- 狀態列內容顏色:控制狀態列內容的顏色,例如 顯示位置和圖示
您可以編輯 themes.xml
檔案來設定導覽列的顏色,以及
(選擇性) 如要將狀態列設為透明,並將狀態列內容顏色設為
光線。
<!-- values-v29/themes.xml -->
<style name="Theme.MyApp">
<item name="android:navigationBarColor">
@android:color/transparent
</item>
<!-- Optional: set to transparent if your app is drawing behind the status bar. -->
<item name="android:statusBarColor">
@android:color/transparent
</item>
<!-- Optional: set for a light status bar with dark content. -->
<item name="android:windowLightStatusBar">
true
</item>
</style>
您可以直接使用 WindowInsetsController
API,但我們強烈建議您盡可能使用支援資料庫 WindowInsetsControllerCompat
。您可以使用 WindowInsetsControllerCompat
API 取代
theme.xml
可控制狀態列的內容顏色。方法是使用
setAppearanceLightNavigationBars()
函式,傳入 true
即可將導覽的前景顏色變更為
淺色,或將 false
還原為預設色彩。
Kotlin
val windowInsetsController = ViewCompat.getWindowInsetsController(window.decorView) windowInsetsController?.isAppearanceLightNavigationBars = true
Java
WindowInsetsControllerCompat windowInsetsController = ViewCompat.getWindowInsetsController(getWindow().getDecorView()); if (windowInsetsController == null) { return; } windowInsetsController.setAppearanceLightNavigationBars(true);