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
You can use following properties:-
android:maxLength="5";
if want single line:-
android:singleLine="true";
else for fix lines:-
android:maxLines="5";