I need allow to user input numeric information in a EditText, but the output needs to be formatted like "##.###,##" (# in [0..9]). The formatting I was made in a TextWatcher... this is good, the TextWatcher does the job... bute, when user selects the EditText, as it marked as text, the AlphaKeyboard is shown, if I select the EditText as numeric the keyboard I need is shown and the TextWatcher stop working... Thanks for any directions
|
feedback
|
|
put the following in your xml at the required edittext
refer to How do I show the number keyboard on an EditText in android | |||
|
feedback
|
|
You need to change edittext entry like this.
| |||
|
feedback
|
|
Use this code to show soft keypad.
| |||
|
feedback
|
|
As you are doing formatting in TextWatcher (##,####....) i.e. you are adding "," in EditText and you have made the EditText as numeric. If its numeric then "," char is invalid. Thus its not allowing TextWatcher to update the formatted text that contains ',". You have 3 options to deal with this problem :
I believe 1st option will be best to handle and manage out. | |||||
feedback
|