They know how to create a monetary EditText?
Format it by clicking?
So I tried and did not work ->
EditText Valor = FindViewById<EditText>(Resource.Id.EditTxtVlr600);
Valor.AfterTextChanged += (s, e) =>
{
var parsedInput = double.Parse(Valor.Text, NumberStyles.AllowDecimalPoint, CultureInfo.InvariantCulture);
Valor.Text = string.Format("{0:C}", parsedInput);
};