I have an EditText that accepts a password. The functionality works great, except that a user set the password to 12 characters. For some reason, the EditText only allows 8 and no more.
Below is the EditText XML:
<EditText
android:id="@+id/editTextPasswordValue"
android:inputType="textPassword"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="25dp"
android:minEms="12"
android:singleLine="true"
android:maxLength="12" >
</EditText>
Thanks in advance