gpt4 book ai didi

android-studio - 在jetpack compose的文本字段中限制小数点前后的位数

转载 作者:行者123 更新时间:2023-12-05 01:06:02 36 4
gpt4 key购买 nike

如何使 TextField 仅接受整数作为输入,如何将小数点前的位数限制为 3,小数点后的位数限制为 2?

例如 NNN.NN,其中 N 是数字。

最佳答案

第一步是为 TextField 设置 keyboardOptions = KeyboardOptions(keyboardType = KeyboardType.Number)。这将在 TextField 获得焦点时打开数字键盘。

现在的问题是 TextField 本身不进行任何验证(与带有 inputType="number" 的 EditText 不同)。用户可以键入键盘上存在的任何字符(如逗号、空格、破折号,甚至多个小数)。您需要自己完成所有这些验证。

试试这个代码:

var number by remember { mutableStateOf("") }
TextField(
value = number,
onValueChange = { number = getValidatedNumber(it) },
keyboardOptions = KeyboardOptions(keyboardType = KeyboardType.Number)
)
fun getValidatedNumber(text: String): String {
// Start by filtering out unwanted characters like commas and multiple decimals
val filteredChars = text.filterIndexed { index, c ->
c in "0123456789" || // Take all digits
(c == '.' && text.indexOf('.') == index) // Take only the first decimal
}
// Now we need to remove extra digits from the input
return if(filteredChars.contains('.')) {
val beforeDecimal = filteredChars.substringBefore('.')
val afterDecimal = filteredChars.substringAfter('.')
beforeDecimal.take(3) + "." + afterDecimal.take(2) // If decimal is present, take first 3 digits before decimal and first 2 digits after decimal
} else {
filteredChars.take(3) // If there is no decimal, just take the first 3 digits
}
}

我没有测试过这段代码,但我认为它应该适用于大多数情况。它将确保最终输入不会超过原始约束,但可能会导致一些意外行为。例如:

  • 如果当前文本是“123.45”并且用户将光标放在小数点后并删除小数点。在这种情况下,新文本将变为“123”,即“45”将被删除,因为“12345”打破了“小数点前 3 位”。
  • 如果当前文本是“123”并且用户将光标放在开头并输入“4”,则下一个文本将是“412”。 “3”将被删除。

对于用户更改光标位置和输入内容的这些极端情况,您必须决定正确的行为应该是什么(就像在我的第一个示例中,您可能选择不允许删除小数并保留原始文本)。您必须根据您的确切要求在 getValidatedNumber 函数中添加此类条件。我有时在这里使用的一种解决方法是禁用光标位置更改,即光标将始​​终保留在末尾并且不能被带到任意索引。

关于android-studio - 在jetpack compose的文本字段中限制小数点前后的位数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70058829/

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