Skip to content

Instantly share code, notes, and snippets.

@seemike
Last active March 16, 2022 18:37
Show Gist options
  • Save seemike/6388429 to your computer and use it in GitHub Desktop.
Save seemike/6388429 to your computer and use it in GitHub Desktop.
Android: restrict EditText field input to alphanumeric characters
<EditText
android:inputType="textNoSuggestions"
android:digits="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890"
/>
@ParryPatel021
Copy link

ParryPatel021 commented Jul 12, 2019

This is working for me. Thanks 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment