将Android中的EditText设置为接受价格格式。

huangapple go评论60阅读模式
英文:

Edittext to accept Price format in android

问题

我有一个用于输入价格的EditText字段。

我可以在其中添加多个小数点,但我想让它只接受单个小数输入,我该如何实现?我尝试过digit="0123456789."

英文:

I have an EditText field which used to input price.

I can add multiple decimals in it but I want to make it to accept a single decimal input, how can i achieve it? I tried digit="0123456789."

答案1

得分: 2

以下是翻译好的部分:

/**
 * 定义了CurrencyInputFilter对象。
 * 它只允许输入0到9999.99之间的值。
 */
class CurrencyInputFilter(val maxDigitsBeforeDecimalPoint: Int = 4, val maxDigitsAfterDecimalPoint: Int = 2) : InputFilter {

    override fun filter(source: CharSequence, start: Int, end: Int,
                        dest: Spanned, dstart: Int, dend: Int): CharSequence? {
        val builder = StringBuilder(dest)
        builder.replace(dstart, dend, source
                .subSequence(start, end).toString())
        return if (!builder.toString().matches("(([1-9]{1})([0-9]{0," + (maxDigitsBeforeDecimalPoint - 1) + "})?)?(\\.[0-9]{0," + maxDigitsAfterDecimalPoint + "})?".toRegex())) {
            if (source.isEmpty()) dest.subSequence(dstart, dend) else ""
        } else null
    }
}

你可以像这样使用它:

// 添加输入过滤器以限制价格在0到9999.99之间
priceEdit.filters = arrayOf<InputFilter>(CurrencyInputFilter())

注意:你可以在构造函数参数中更改数字的位数。

英文:

To do this, I'm using the following `InputFilter``

/**
 * Definition of the CurrencyInputFilter object.
 * It allows only value from 0 to 9999.99
 */
class CurrencyInputFilter(val maxDigitsBeforeDecimalPoint: Int = 4, val maxDigitsAfterDecimalPoint: Int = 2) : InputFilter {

    override fun filter(source: CharSequence, start: Int, end: Int,
                        dest: Spanned, dstart: Int, dend: Int): CharSequence? {
        val builder = StringBuilder(dest)
        builder.replace(dstart, dend, source
                .subSequence(start, end).toString())
        return if (!builder.toString().matches((&quot;(([1-9]{1})([0-9]{0,&quot; + (maxDigitsBeforeDecimalPoint - 1) + &quot;})?)?(\\.[0-9]{0,&quot; + maxDigitsAfterDecimalPoint + &quot;})?&quot;).toRegex())) {
            if (source.isEmpty()) dest.subSequence(dstart, dend) else &quot;&quot;
        } else null
    }
}

You can use it like this:

// add input filter to limit price from 0 to 9999.99
priceEdit.filters = arrayOf&lt;InputFilter&gt;(CurrencyInputFilter())

Note: you can change the number of digits in the constructor parameters.

答案2

得分: 0

只需将此行添加到您的XML中的EditText视图中:android:inputType=&quot;numberDecimal&quot;

此外,通过以下代码检查输入是否有效:

try {
    val number = editText.text.toString().toDouble()
} catch (e: Exception) {
    Log.v("INVALID", "Invalid price")
}
英文:

Just add this line android:inputType=&quot;numberDecimal&quot; to your EditText view in your xml and it will work.

Also, check if the input entered is valid or not by following code

try {
    val number = editText.text.toString().toDouble()
} catch (e: Exception) {
    Log.v(&quot;INVALID&quot;, &quot;Invalid price&quot;)
}

huangapple
  • 本文由 发表于 2020年7月28日 20:32:45
  • 转载请务必保留本文链接:https://go.coder-hub.com/63134235.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定