Posts by programadorCS • 11 points
3 posts
-
0
votes2
answers71
viewsA: Android Edittext type number make appear keyboard with numbers and comma
I got it, guys, there’s been a mix-up of different slides keyboard, android bug. instead of making a new keyboard I called the default 12 digits to always be the same, and limited digits and comma…
-
0
votes2
answers71
viewsA: Android Edittext type number make appear keyboard with numbers and comma
I was able to create a textWatcher for the component: TextWatcher() { private String current = ""; @Override public void beforeTextChanged(CharSequence s, int start, int count, int after) { }…
-
1
votes2
answers71
viewsQ: Android Edittext type number make appear keyboard with numbers and comma
I am working with values in editText and I need the input to be only numbers and comma to floating point. I tried with inputType="numberDecimal" but when opening the keyboard only allows the point…