I need to use both comma and dot in the numeric keyboard in android in xamarin.forms.
I am testing on Samsung S7.
when defining the
Keyboard = Keyboard.Numeric
in xamarin.forms I can only see dot with the numbers.
I tried custom renderer with:
protected override void OnElementChanged(ElementChangedEventArgs<Entry> e)
{
base.OnElementChanged(e);
InputTypes its = InputTypes.ClassNumber | InputTypes.NumberFlagSigned | InputTypes.NumberFlagDecimal;
Control.SetRawInputType(its);
}
but I see the dot with the - sign, no comma
Any ideas ?