Jetpack compose - 更改底部栏切口颜色

时间:2021-07-28 18:11:43

标签: android android-jetpack-compose android-bottomappbar android-jetpack-compose-scaffold

如何更改底栏的切口颜色?

我知道它采用 MaterialTheme.colors.background 的颜色,但我不想更改所有组件的背景颜色,仅更改底部栏的背景颜色。 (图中剪下的白色。)

enter image description here

我尝试了不同的方法,例如只为底部栏设置一个新主题,但这不起作用。

val bottomBarColors = MaterialTheme.colors.copy(background = Color.LightGray)
...

bottomBar = {
    MaterialTheme(
        colors = bottomBarColors,
        typography = MaterialTheme.typography,
        shapes = MaterialTheme.shapes
    ) {
        BottomAppBar(
            cutoutShape = fabShape,
            content = {
                MyBottomNavigation(navController, bottomNavigationItems)
            })
    }
}

2 个答案:

答案 0 :(得分:1)

在您的情况下,您可以将 Modifier.background 应用于 BottomAppBar

    bottomBar = {
        BottomAppBar(
            modifier = Modifier.background(Color.Red),
            cutoutShape = fabShape) {

            BottomNavigation {
                /* .... */
            }
        }
    }

enter image description here

答案 1 :(得分:-1)

解决方案比我想象的要容易。只需在底部栏下方添加一些内容:

bottomBar = {
        Box {
            Spacer(modifier = Modifier.matchParentSize().background(color = Color.Blue))
            BottomAppBar(
                cutoutShape = fabShape,
                content = {
                    MyBottomNavigation(navController, bottomNavigationItems)
                })
    }
}