Eugen Martynov
12/02/2019, 3:38 PMeditText.length() in 2 until maxEditLength
?editText.length() in (2 until maxEditLength)
Burkhard
12/02/2019, 4:45 PMeditText.size
instead of editText.length()
but I guess that is up to personal preference as long as it is consistent within the project/team.arekolek
12/03/2019, 6:29 AMeditText.length()
is 6 and maxEditLength
is also 6, you want the condition to return false
? that’s a bit confusing
why not make maxEditLength
inclusive and use editText.length() in 2..maxEditLength
?Eugen Martynov
12/03/2019, 4:27 PM