I have an app using a webview running on Android 2.3. (I only need to target 2.3, its for a specific device). My HTML form has the following textbox in it:
<input type="text" maxlength="8" id="blah" name="blah" />
The webview restricts the length to 8, but when the user goes past that the backspace button basically stops functioning, so they can't go back and change what they've typed in. I tried this on my nexus 7 (2013) running the latest version of KitKat and it just completely ignores maxlength altogether. Am I missing something or is there something special you need to do to set the maxlength of a text field in Android?