Hello I need to input a number in an EditText and with a button add a number to the the current value. But each time I click my button, a decimal point is added to the editText String. How can I get a plain number without this decimal point ?
Let suppose I enter the number 100 in my EditText box then I click the button.
The result will be 100.0
Let suppose I enter the number 100 in my EditText box then I click the button.
B4X:
Sub Button1_Click
EditText1.Text = EditText1.Text + 10
End Sub