summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Android/KeyboardManager.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Platform.Android/KeyboardManager.cs')
-rw-r--r--Xamarin.Forms.Platform.Android/KeyboardManager.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Xamarin.Forms.Platform.Android/KeyboardManager.cs b/Xamarin.Forms.Platform.Android/KeyboardManager.cs
index 649c99bd..db478578 100644
--- a/Xamarin.Forms.Platform.Android/KeyboardManager.cs
+++ b/Xamarin.Forms.Platform.Android/KeyboardManager.cs
@@ -11,7 +11,7 @@ namespace Xamarin.Forms.Platform.Android
{
internal static void HideKeyboard(this AView inputView, bool overrideValidation = false)
{
- using(var inputMethodManager = (InputMethodManager)Forms.Context.GetSystemService(Context.InputMethodService))
+ using (var inputMethodManager = (InputMethodManager)Forms.Context.GetSystemService(Context.InputMethodService))
{
IBinder windowToken = null;
@@ -26,7 +26,7 @@ namespace Xamarin.Forms.Platform.Android
internal static void ShowKeyboard(this AView inputView)
{
- using(var inputMethodManager = (InputMethodManager)Forms.Context.GetSystemService(Context.InputMethodService))
+ using (var inputMethodManager = (InputMethodManager)Forms.Context.GetSystemService(Context.InputMethodService))
{
if (inputView is EditText || inputView is TextView || inputView is SearchView)
{