S Sub7 Active Member Licensed User Longtime User Sep 2, 2015 #1 Hello, how i can add the -(negative) symbol while using INPUT_TYPE_NUMBERS without filtering the whole keyboard with IME? numbers can be negative. B4X: editxt1.InputType = editxt1.INPUT_TYPE_NUMBERS Thank you.
Hello, how i can add the -(negative) symbol while using INPUT_TYPE_NUMBERS without filtering the whole keyboard with IME? numbers can be negative. B4X: editxt1.InputType = editxt1.INPUT_TYPE_NUMBERS Thank you.
Erel B4X founder Staff member Licensed User Longtime User Sep 2, 2015 #2 You can switch to INPUT_TYPE_DECIMAL_NUMBERS. You can delete the "." in the TextChanged event. Upvote 0