Is there any way to set a maximum of Chars to a line in an EditText Field? I tried it with a TextWatcher, But I cant really do what I want.
EditText
TextWatcher
Add this in the layout:
android:maxLength="10" // If you want 10 symbols entered in the EditText
EDIT:
android:lines="10" // For the numer of lines in the EditText