summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Android
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Platform.Android')
-rw-r--r--Xamarin.Forms.Platform.Android/Renderers/LocalizedDigitsKeyListener.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/Xamarin.Forms.Platform.Android/Renderers/LocalizedDigitsKeyListener.cs b/Xamarin.Forms.Platform.Android/Renderers/LocalizedDigitsKeyListener.cs
index 009cffbb..76e72388 100644
--- a/Xamarin.Forms.Platform.Android/Renderers/LocalizedDigitsKeyListener.cs
+++ b/Xamarin.Forms.Platform.Android/Renderers/LocalizedDigitsKeyListener.cs
@@ -34,7 +34,9 @@ namespace Xamarin.Forms.Platform.Android
if ((inputTypes & InputTypes.NumberFlagDecimal) == 0)
{
// If decimal isn't allowed, we can just use the Android version
+#pragma warning disable 0618
return DigitsKeyListener.GetInstance(inputTypes.HasFlag(InputTypes.NumberFlagSigned), false);
+#pragma warning restore 0618
}
// Figure out what the decimal separator is for the current locale
@@ -43,7 +45,9 @@ namespace Xamarin.Forms.Platform.Android
if (decimalSeparator == '.')
{
// If it's '.', then we can just use the default Android version
+#pragma warning disable 0618
return DigitsKeyListener.GetInstance(inputTypes.HasFlag(InputTypes.NumberFlagSigned), true);
+#pragma warning restore 0618
}
// If decimals are enabled and the locale's decimal separator is not '.'