Home > Java > How to limit decimal points to + one digit per digit

How to limit decimal points to + one digit per digit

PHPz
Release: 2024-02-22 12:49:20
forward
1138 people have browsed it

php小编鱼仔带来的Java问答:如何实现将小数点限制为每个数字后只能保留一位?这是许多Java开发者在处理数字格式化时经常遇到的问题。在实际项目中,对小数点的控制是非常重要的,尤其是涉及金额、货币等需要精确计算的场景。接下来,我们将通过简单易懂的例子,详细介绍在Java中如何实现这一需求。

问题内容

我正在 java/android studio 中编写一个计算器,我遇到了每个数字只需要一位小数点的问题。类似于 1.2,而不是 1.2.3。允许用户在计算器中使用小数或自然数,但是,一旦用户按下点(“.”)符号,就无法对该特定数字再次重复。

我对其进行编码以显示错误(这不起作用),并且用户不应该在数字的第一个小数点之后添加另一个小数点,而不是显示错误。它需要适用于 1.1 + 1.1,但不适用于 1.1.1。或 1.1。等等

我尝试将此作为代码的一部分,但它不起作用。就像,它不断禁用我的等于按钮,即使我已经在第一次警告后立即编写了它。

Pattern p;


@Override
protected void onCreate(Bundle savedInstanceState) {
   super.onCreate(savedInstanceState);
   setContentView(R.layout.activity_main);


   p = Pattern.compile("(\\d*(\\.\\d*)?([+\\-*%\\]|$))*");


   UserInput = findViewById(R.id.ed_calculation_input);
   UserInput.setShowSoftInputOnFocus(false);
   tvCalculationOutput = findViewById(R.id.tv_calculation_output);


   edUserInput.addTextChangedListener(new TextWatcher() {
       @Override
       public void beforeTextChanged(CharSequence s, int start, int count, int after) {


       }


       @Override
       public void onTextChanged(CharSequence s, int start, int before, int count) {
           Matcher m = p.matcher(edUserInput.getText().toString());
           if(!m.matches()) {
               edUserInput.setError("Enter valid no");
               btnEqual.setEnabled(false);
           } else {
               btnEqual.setEnabled(true);
           }
       }


       @Override
       public void afterTextChanged(Editable s) {


       }
   });
Copy after login

解决方法

这个问题的解决方案相当简单。您已选择 edittext 作为数字的输入,不是吗?然后您所要做的就是添加行

<EditText
    ...
    android:inputType="numberDecimal"
    ...
    />
Copy after login

在 xml 布局文件中,防止数字有多个小数点(或字母或其他符号)。

The above is the detailed content of How to limit decimal points to + one digit per digit. For more information, please follow other related articles on the PHP Chinese website!

source:stackoverflow.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template