更改导航栏按钮和状态栏图标颜色

问题描述 投票:0回答:1

由于 targetSdk 35 的应用程序在 Android 15 上默认是边缘到边缘的,因此我遇到了导航栏和状态栏图标颜色的问题。 在 Android 15 上运行我的应用程序时,导航栏按钮和状态栏图标颜色为深色且不可见。有没有办法改变我的应用程序的某些页面的颜色? (因为我也有浅色背景的页面,所以深色图标就可以了)

enter image description here

enter image description here

android android-jetpack-compose statusbar navigationbar android-15
1个回答
0
投票

您可以使用

enableEdgeToEdge()
更改与此类似的颜色

enableEdgeToEdge(statusBarStyle = SystemBarStyle.dark(Color.DKGRAY), navigationBarStyle = SystemBarStyle.dark(Color.DKGRAY))

只需将颜色替换为紫色即可

© www.soinside.com 2019 - 2024. All rights reserved.