所以我面临的问题是我有一个可以有动态文本的按钮,按钮有一个状态isLoading
,当它变成true时,View被重组为显示加载器。现在装载机有自己的宽度和高度。我如何管理装载机遵循相同的尺寸作为文本,这是前面所示。现在,当加载器出现时,按钮大小变大,加载完成后,isLoading
再次为false,按钮将达到其实际大小,其中包含文本。
编辑1:@thracian建议的方法工作正常,除了一个奇怪的问题,即按钮获得一些预定义的高度(因此在计算视图高度时导致相同的值),这使得按钮看起来比我计划实现的要高。为ref附加代码,我如何使这个按钮跟随 Package 的内容&同时在视图大小中获得相同的计算值。
@Composable
fun GreenCTA(
modifier: Modifier = Modifier, onClick: () -> Unit, title: String, isShowLoader: Boolean
) {
var buttonSize by remember {
mutableStateOf(DpSize.Zero)
}
val density = LocalDensity.current
Button(
modifier = modifier
.then(if (buttonSize != DpSize.Zero) modifier.size(buttonSize) else modifier)
.onSizeChanged { newSize ->
if (buttonSize == DpSize.Zero) {
buttonSize = with(density) {
newSize
.toSize()
.toDpSize()
}
}
},
onClick = { onClick.invoke() },
border = BorderStroke(1.dp, color = colorResource(id = R.color.pass_color_c2e6cd)),
colors = ButtonDefaults.buttonColors(backgroundColor = colorResource(id = R.color.pass_color_e3f6ec)),
shape = RoundedCornerShape(6.dp),
contentPadding = PaddingValues(horizontal = 12.dp, vertical = 8.dp),
elevation = ButtonDefaults.elevation(0.dp),
) {
if (isShowLoader) BlueLoader(
modifier = Modifier
.fillMaxHeight()
.aspectRatio(3f)
)
else {
Row(
verticalAlignment = Alignment.CenterVertically,
horizontalArrangement = Arrangement.spacedBy(8.dp)
) {
Image(
painter = painterResource(id = R.drawable.ic_add_tag),
contentDescription = "Button Logo"
)
Text(
text = title,
style = MaterialTheme.typography.body2.copy(lineHeight = 20.sp),
fontWeight = FontWeight.SemiBold,
)
}
}
}
}
2条答案
按热度按时间h7appiyu1#
如果您希望根据最初合成的文本调整按钮的大小,您可以在显示文本时使用Modifier.onSizeChanged作为按钮尺寸,然后在文本未合成时将这些尺寸设置为按钮的大小,例如
另外,如果你想调整一个Button的大小到一个还没有组合的Composable,比如加载器的大小,你可以使用SubcomposeLayout来预先获得尺寸,就像下面的答案一样
How to adjust size of component to it's child and remain unchanged when it's child size will change? (Jetpack Compose)
niknxzdl2#
您可以使用下面的自定义组合来实现您的要求:
用途:
样本输出: