Skip to content
5 changes: 5 additions & 0 deletions src/Core/src/Platform/Android/EditTextExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -382,6 +382,11 @@ internal static void SetInputType(this EditText editText, ITextInput textInput)
if (editText.InputType.HasFlag(InputTypes.ClassNumber))
editText.InputType |= InputTypes.NumberVariationPassword;
}
else if (textInput is IEntry)
{
editText.InputType &= ~InputTypes.TextVariationPassword;
editText.InputType &= ~InputTypes.NumberVariationPassword;
Comment thread
jpd21122012 marked this conversation as resolved.
Outdated
Comment thread
jpd21122012 marked this conversation as resolved.
Outdated
}
Comment thread
jpd21122012 marked this conversation as resolved.
Outdated

if (textInput is IEditor)
editText.InputType |= InputTypes.TextFlagMultiLine;
Expand Down
Loading