What\'s the best way to limit the text length of an EditText in Android?
EditText
Is there a way to do this via xml?
etxt_userinput.filters = arrayOf(InputFilter.LengthFilter(100))
where 100 is the maxLength
100