如何在 JetpackCompose“行”或“列”中设置 ClipToBounds“false”

时间:2021-05-07 10:09:08

标签: android android-layout android-jetpack android-jetpack-compose dagger-hilt

    Row(modifier = Modifier.height(58.dp).fillMaxWidth().notClip()) {
                Icon(
                    painter = painterResource(id = R.drawable.ic_launcher_foreground),
                    contentDescription = null,
                    modifier = Modifier
                        .height(100.dp)
                        .width(100.dp)
                        .clip(shape = CircleShape)
                    .clickable(
                        onClick = {
                        Toast
                            .makeText(
                                this@MainActivity,
                                "YOU clicked android button",
                                Toast.LENGTH_SHORT
                            )
                            .show();
                    },
                    ))
            }

在我上面的代码中,我试图在行约束之外显示按钮的涟漪(就像在 github-mobile 应用程序的底部导航栏中一样;当您单击底部导航栏中的按钮时,它会在底部导航之外显示涟漪bar) height(60.dp),但它不起作用。我研究了一下并创建了自己的扩展函数

fun Modifier.notClip()= graphicsLayer(clip = false) ;

并在 Row 的修改器上使用它来禁用裁剪,但 Row 仍会裁剪要在 Row 约束之外显示的波纹。有人帮忙!,?? `

1 个答案:

答案 0 :(得分:4)

clickable 修饰符中,您可以指定 Indication 参数。您可以使用通过 rememberRipple 更改 bounded 参数定义的默认波纹。

    Row(
        modifier = Modifier.height(58.dp).fillMaxWidth().background(Color.Yellow)
    ) {
        Icon(
            painter = painterResource(id = R.drawable.ic_launcher_foreground),
            contentDescription = null,
            modifier = Modifier
                .clickable(
                    interactionSource = interactionSource,
                    indication = rememberRipple(
                        //radius= 300.dp,
                        bounded = false),
                    onClick = { /* .. */ })
                .height(100.dp)
                .width(100.dp)
                .clip(shape = CircleShape)

        )
    }

enter image description here