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!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

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(Resource.Id.Editor);

editor.Mask = "00000";

editor.Mask = null;

editor.Value = "a";


is displaying
a_____

it should display
a

Reason why it is happening:

MaskHelper.
LoadTextBox in returning if Mask is null and does not check if there was a Mask befor so it is not clearing any existing Mask. 


Workarround is:

editor.Mask = "00000";

editor.Mask = string.Empty;

editor.Value = "a";


It would be nice to get a fix for this. Thanks.