I would like to see the maxLength of an EditText at run time to be able to make a text display decision. Is that possible?
maxLength
EditText
Here is a de
This should work:
editText.setFilters(new InputFilter[] { new InputFilter.LengthFilter(12) });