Welcome to the Xamarin.Android feedback portal. We’re happy you’re here! If you have feedback on how to improve the Xamarin.Android, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
Hi,
we are using the control inside RecyclerView and were facing the issue that some input where showing Masks even if no Mask was specified… After a good amount of debugging we found the following. A MakedEdit that had a Masked applied is unable to remove the Mask by setting it to null.
var editor = FindViewById
editor.Mask = "00000";
editor.Mask = null;
editor.Value = "a";
Workarround is:
editor.Mask = "00000";
editor.Mask = string.Empty;
editor.Value = "a";
It would be nice to get a fix for this. Thanks.