What's the best way to limit text length of EditText in Android

android, android-edittext, maxlength

Solution

Documentation

Example

android:maxLength="10"

Problem

What's the best way to limit the text length of an `EditText` in Android? Is there a way to do this via xml?

Original source

Related problems