I have a TextView in my app that i want a user to be able to only enter alpha-numeric characters in. How can this be done? Thanks!
This should work:
textView.setInputType(InputType.TYPE_CLASS_NUMBER);