Skip to content

Instantly share code, notes, and snippets.

@STAR-ZERO
Created June 19, 2012 03:57
Show Gist options
  • Select an option

  • Save STAR-ZERO/2952228 to your computer and use it in GitHub Desktop.

Select an option

Save STAR-ZERO/2952228 to your computer and use it in GitHub Desktop.
【Android】ソースコードからEditTextにMaxLength設定
EditText editText = new EditText(this);
editText.setInputType(InputType.TYPE_CLASS_TEXT);
editText.setFilters(new InputFilter[] {new InputFilter.LengthFilter(10)});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment