David Webb

Results 1 comments of David Webb

My solution is to save the `Typeface` before setting the input type and put it back afterwards. ``` Typeface typeface = editText.getTypeface(); editText.setInputType(inputType); editText.setTypeface(typeface); ```