gpt4 book ai didi

android - 在撰写android中创建一个圆形按钮并将文本居中

转载 作者:行者123 更新时间:2023-12-03 07:57:10 34 4
gpt4 key购买 nike

我正在尝试创建一个圆形按钮,其中包含一些应居中的缩写文本。按钮大小应为 34.dp,文本应为 13.sp,但我必须增加按钮的大小以使文本正确显示

我认为文本不显示的原因是文本可组合项的内部填充。

Button(
modifier = Modifier.size(49.dp),
colors = ButtonDefaults.buttonColors(
containerColor = Color.Black,
contentColor = Color.White),
onClick = {

}) {
Text(text = "JB",
fontSize = 13.sp,
fontWeight = FontWeight.SemiBold,
style = TextStyle(
lineHeightStyle = LineHeightStyle(
alignment = LineHeightStyle.Alignment.Center,
trim = LineHeightStyle.Trim.Both
)
)
)
}

最佳答案

如果您想使用 34.dp 作为大小,则必须应用 0.dpcontentPadding

    Button(
modifier = Modifier.size(34.dp),
shape = CircleShape,
contentPadding = PaddingValues(0.dp),
//...

enter image description here

关于android - 在撰写android中创建一个圆形按钮并将文本居中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/75766014/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com